码迷,mamicode.com
首页 > 其他好文 > 详细

lnmp更改默认目录

时间:2019-04-04 17:39:38      阅读:404      评论:0      收藏:0      [点我收藏+]

标签:ror   pass   nmp   ast   erro   cal   目录   fast   clu   

lnmp下默认的根目录是/usr/share/nginx/html

很多时候我们都需要更改默认的目录,下面记录一下,以备后用

server {
    listen       80;
    server_name  localhost;
location / {
     # 这里需要改成我们指定的目录 root
/home/www; index index.php index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ {
   # 这里需要改成我们指定的目录 root
/home/www; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; # 这里需要改成 $document_root fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }

}

 

lnmp更改默认目录

标签:ror   pass   nmp   ast   erro   cal   目录   fast   clu   

原文地址:https://www.cnblogs.com/JiangBigShrimp/p/10655772.html

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