3

我正在使用来自Nginx For Windows的 Windows 安装文件

但是它不允许更改安装位置,因此默认为C:\nginxIs there a way to update the config file to change the root directory to D:\blabla?

示例代码来自nginx.conf

server {
    listen       80;
    server_name  localhost;

    location / {
        root   html;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}
4

3 回答 3

5

-p启动nginx时使用参数:

nginx -p "D:\blabla"
于 2013-11-15T13:33:45.367 回答
2

根d:/路径/任何地方;可以正常工作,但请使用正确的 Windows 版本,如蝴蝶或 Caterpillar 版本,而不是其他那些残缺的版本。

甚至是根 '//192.168.2.5/mount/webdrive'; 将工作!

于 2013-11-17T21:40:09.220 回答
0

我不知道两年前的情况,但是使用当前版本(1.13.9),您只需要设置服务器的根目录

server {
    listen       80;
    server_name  localhost;

    location / {
        root   D:\blabla;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   D:\blabla;
    }
}
于 2018-02-23T14:40:44.153 回答