@@ -0,0 +1,71 @@
+Index: conf/nginx.conf
+===================================================================
+--- conf/nginx.conf.orig 2009-04-06 15:43:46.000000000 +0200
++++ conf/nginx.conf 2009-05-08 20:19:55.436773498 +0200
+@@ -1,12 +1,12 @@
+
+-#user nobody;
++user nginx;
+ worker_processes 1;
+
+-#error_log logs/error.log;
+-#error_log logs/error.log notice;
+-#error_log logs/error.log info;
++#error_log /var/log/nginx/error.log;
++#error_log /var/log/nginx/error.log notice;
++#error_log /var/log/nginx/error.log info;
+
+-#pid logs/nginx.pid;
++#pid /var/run/nginx.pid;
+
+
+ events {
+@@ -22,7 +22,7 @@ http {
+ # '$status $body_bytes_sent "$http_referer" '
+ # '"$http_user_agent" "$http_x_forwarded_for"';
+
+- #access_log logs/access.log main;
++ #access_log /var/log/nginx/access.log main;
+
+ sendfile on;
+ #tcp_nopush on;
+@@ -38,10 +38,10 @@ http {
+
+ #charset koi8-r;
+
+- #access_log logs/host.access.log main;
++ #access_log /var/log/nginx/host.access.log main;
+
+ location / {
+- root html;
++ root /srv/www/htdocs/;
+ index index.html index.htm;
+ }
+
+@@ -51,7 +51,7 @@ http {
+ #
+ error_page 500 502 503 504 /50x.html;
+ location = /50x.html {
+- root html;
++ root /srv/www/htdocs/;
+ }
+
+ # proxy the PHP scripts to Apache listening on 127.0.0.1:80
+@@ -87,7 +87,7 @@ http {
+ # server_name somename alias another.alias;
+
+ # location / {
+- # root html;
++ # root /srv/www/htdocs/;
+ # index index.html index.htm;
+ # }
+ #}
+@@ -110,7 +110,7 @@ http {
+ # ssl_prefer_server_ciphers on;
+
+ # location / {
+- # root html;
++ # root /srv/www/htdocs/;
+ # index index.html index.htm;
+ # }
+ #}
|