如何将nginx服务器的根path设置为ngnix文件夹之外的direcoty?
目前ngnix在这里:c:/ ngnix
我想c:/ www是根。
目前与服务器{听80; server_name localhost;
#charset koi8-r; #access_log logs/host.access.log main; root c:/www; location / { index index.html index.htm; autoindex on; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; }
root选项可以在location块内。 尝试:
location / { root c:/www; index index.html index.htm; }