lnmp更改默认目录
Posted jiangbigshrimp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lnmp更改默认目录相关的知识,希望对你有一定的参考价值。
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更改默认目录的主要内容,如果未能解决你的问题,请参考以下文章
如何在Android的谷歌地图片段中更改默认的蓝色圆形位置图标?
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段