diff options
-rw-r--r-- | etc/nginx/nginx.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/nginx/nginx.conf b/etc/nginx/nginx.conf index 3bb3389365f..f23e6866ec5 100644 --- a/etc/nginx/nginx.conf +++ b/etc/nginx/nginx.conf @@ -41,7 +41,7 @@ http { #access_log logs/host.access.log main; location / { - root html; + root /htdocs; index index.html index.htm; } @@ -87,7 +87,7 @@ http { # server_name somename alias another.alias; # location / { - # root html; + # root /htdocs; # index index.html index.htm; # } #} @@ -110,7 +110,7 @@ http { # ssl_prefer_server_ciphers on; # location / { - # root html; + # root /htdocs; # index index.html index.htm; # } #} |