如何将 nginx 根路径设置为 ngnix 目录之外的目录

如何将 nginx 根路径设置为 ngnix 目录之外的目录

如何将 nginx 服务器的根路径设置为 ngnix 文件夹之外的目录?

目前 ngnix 位于:c:/ngnix

我希望 c:/www 作为根目录。

当前与服务器 { listen 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;
    }

答案1

root选项可能位于location块内。尝试:

    location / {
        root   c:/www;
        index  index.html index.htm;
    }

相关内容