首页 > 代码库 > 更改nginx网站根目录
更改nginx网站根目录
默认网站根目录为/usr/local/nginx/html,要将它改成/homw/www
location / { root html; index index.php index.html index.htm; }
location / { root /home/www; index index.php index.html index.htm; } root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } root /home/www; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
vi /usr/local/nginx/conf/nginx.conf
将其中的
改为
然后再将
location ~ \.php$ {
改为
location ~ \.php$ {
然后重启nginx
已经安装了samba,所以要将vi /etc/samba/smb.conf中的[public]下的path值改为
path = /home/www/
chown nginx.nginx /home/www/ -R #设置目录所有者
chmod 700 /home/www/ -R #设置目录权限
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。