$OpenBSD: patch-conf_nginx_conf,v 1.1.1.1 2007/09/04 21:58:26 merdely Exp $
--- conf/nginx.conf.orig	Thu Jan 18 00:08:18 2007
+++ conf/nginx.conf	Mon Sep  3 12:34:22 2007
@@ -15,7 +15,7 @@ events {
 
 
 http {
-    include       conf/mime.types;
+    include       mime.types;
     default_type  application/octet-stream;
 
     #log_format  main  '$remote_addr - $remote_user [$time_local] $request '
@@ -41,7 +41,7 @@ http {
         #access_log  logs/host.access.log  main;
 
         location / {
-            root   html;
+            root   !!NGINX_DIR!!/html;
             index  index.html index.htm;
         }
 
@@ -51,7 +51,7 @@ http {
         #
         error_page   500 502 503 504  /50x.html;
         location = /50x.html {
-            root   html;
+            root   !!NGINX_DIR!!/html;
         }
 
         # proxy the PHP scripts to Apache listening on 127.0.0.1:80
@@ -86,7 +86,7 @@ http {
     #    server_name  somename  alias  another.alias;
 
     #    location / {
-    #        root   html;
+    #        root   !!NGINX_DIR!!/html;
     #        index  index.html index.htm;
     #    }
     #}
@@ -109,7 +109,7 @@ http {
     #    ssl_prefer_server_ciphers   on;
 
     #    location / {
-    #        root   html;
+    #        root   !!NGINX_DIR!!/html;
     #        index  index.html index.htm;
     #    }
     #}
