summaryrefslogtreecommitdiff
path: root/nginx.conf
diff options
context:
space:
mode:
authorAndreas Maunz <andreas@maunz.de>2011-11-16 15:21:07 +0100
committerAndreas Maunz <andreas@maunz.de>2011-11-16 15:21:07 +0100
commit483d87ed8064573f60194f7936701d21f8728e61 (patch)
treef8ef74d71d1a000760c6e0d1b35792896cb77fee /nginx.conf
parent69fa1d589bce1d6b17ea9948cce3cb80a7f84819 (diff)
Fixed PORT to NGINX_PORT
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf12
1 files changed, 6 insertions, 6 deletions
diff --git a/nginx.conf b/nginx.conf
index 4372940..6a8186a 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -8,14 +8,14 @@ http {
server_names_hash_bucket_size 256;
- passenger_root RUBY_DEST/lib/ruby/gems/1.8/gems/PASSENGER;
- passenger_ruby RUBY_DEST/bin/ruby;
- passenger_default_user USER;
+ passenger_root /home/am/opentox-ruby/ruby-enterprise-1.8.7-2011.03/lib/ruby/gems/1.8/gems/passenger-3.0.9;
+ passenger_ruby /home/am/opentox-ruby/ruby-enterprise-1.8.7-2011.03/bin/ruby;
+ passenger_default_user am;
passenger_log_level 2;
passenger_spawn_method conservative;
#passenger_use_global_queue on;
- include NGINX_DEST/conf/mime.types;
+ include /home/am/opentox-ruby/nginx/conf/mime.types;
default_type application/octet-stream;
sendfile on;
@@ -25,9 +25,9 @@ http {
server {
listen PORT;
client_max_body_size 5000m;
- server_name SERVERNAME;
+ server_name z21mn;
location / {
- root WWW_DEST;
+ root /home/am/opentox-ruby/www;
passenger_enabled on;
}
passenger_base_uri /compound;