如何在nginx中更改服务器根目录?

时间:2014-04-14 08:47:39

标签: nginx

nginx中的默认服务器根目录为/usr/share/nginx/html。如何将其更改为/home/username/html?我尝试在网站上添加此配置,但没有工作!

server {
        listen   80;
        root /home/username/html;
        index index.html index.htm;
        server_name mj.dev;
}

2 个答案:

答案 0 :(得分:0)

尝试重启你的nginx服务器!

    nginx -s restart

如果我仍然工作,请检查天气,你加载正确的配置文件。

使用

    nginx -t

检查配置文件的语法

答案 1 :(得分:0)

如果

nginx -s restart

不起作用,你应该试试

/etc/init.d/nginx restart

但通常只需重新加载配置文件

/etc/init.d/nginx reload

您也可以尝试将 nginx.conf 文件放入 / etc / nginx 中 (如果你没有正确链接它)