码迷,mamicode.com
首页 > Web开发 > 详细

centos7修改nginx默认网站目录

时间:2020-05-27 22:07:34      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:nginx   name   location   目录   code   index   http   serve   网站目录   

想修改nginx的默认网站目录,百度了一大圈都没找到满意的

通过宝塔安装的nginx,进入配置文件目录:/www/server/nginx/conf/

修改nginx.conf,找到http,server,加入:

server
    {
        listen       80;
        server_name  localhost;

        location / {
            root   /www/wwwroot/default;
            index  index.html index.htm;
        }

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

/www/wwwroot/default为你想要改成的默认网站目录,后面不带“/”

保存,重载nginx服务即可。

 

centos7修改nginx默认网站目录

标签:nginx   name   location   目录   code   index   http   serve   网站目录   

原文地址:https://www.cnblogs.com/tckey/p/12976902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!