@@ -0,0 +1,88 @@
+Index: conf/nginx.conf
+===================================================================
+--- conf/nginx.conf.orig 2007-01-18 08:08:18.000000000 +0100
++++ conf/nginx.conf 2007-04-04 00:30:46.582415299 +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 {
+@@ -15,14 +15,14 @@ events {
+
+
+ http {
+- include conf/mime.types;
++ include /etc/nginx/mime.types;
+ default_type application/octet-stream;
+
+ #log_format main '$remote_addr - $remote_user [$time_local] $request '
+ # '"$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
+@@ -66,7 +66,7 @@ http {
+ # fastcgi_pass 127.0.0.1:9000;
+ # fastcgi_index index.php;
+ # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
+- # include conf/fastcgi_params;
++ # include /etc/nginx/fastcgi_params;
+ #}
+
+ # deny access to .htaccess files, if Apache's document root
+@@ -86,7 +86,7 @@ http {
+ # server_name somename alias another.alias;
+
+ # location / {
+- # root html;
++ # root /srv/www/htdocs/;
+ # index index.html index.htm;
+ # }
+ #}
+@@ -109,7 +109,7 @@ http {
+ # ssl_prefer_server_ciphers on;
+
+ # location / {
+- # root html;
++ # root /srv/www/htdocs/;
+ # index index.html index.htm;
+ # }
+ #}
|