更改nginx网站根目录

默认网站根目录为/usr/local/nginx/html,要将它改成/homw/www

vi /usr/local/nginx/conf/nginx.conf

将其中的

location / {

root   html;

index  index.php index.html index.htm;

}

改为

location / {

root   /home/www;

index  index.php index.html index.htm;

}

然后再将

location ~ \.php$ {

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;

}

改为

location ~ \.php$ {

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;

}

然后重启nginx

已经安装了samba,所以要将vi /etc/samba/smb.conf中的[public]下的path值改为

path = /home/www/

时间: 2024-12-19 02:12:22

更改nginx网站根目录的相关文章

如何更改nginx网站根目录 以及解析php

nginx默认网站根目录为/usr/local/nginx/html,如果想要将它改成/data/www 需配置 vim /usr/local/nginx/conf/nginx.conf 将其中的字段 location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_scri

更改Nginx网站根目录以及导致的403 forbidden问题解决

版权声明:本文为博主原创文章,未经博主允许不得转载. 一.更改根目录 Nginx默认网站根目录为/usr/local/nginx/html,要将它改成/home/fuxiao/www 更改方法: vi /usr/local/nginx/conf/nginx.conf 将其中的 location / { root   html; index  index.php index.html index.htm; } 改为 location / { root   /home/fuxiao/www; ind

Nginx网站根目录更改及导致403 forbidden的问题解决

最近因为工作需要,要将Nginx网站根目录更改下,通过网上的一些教程更改后,但发现测试的时候一直提示403 forbidden错误,后台通过一个朋友的提示也解决了,所以现在将详细的步骤分享给大家,有需要的朋友们可以参考学习. 一.更改根目录 Nginx默认网站根目录为/usr/local/nginx/html,要将它改成/home/fuxiao/www 更改方法: ? 1 vi /usr/local/nginx/conf/nginx.conf 将其中的 ? 1 2 3 4 location /

更改apache网站根目录导致localhost不能访问

使用xampp或wamp安装完集成环境后,更改apache的网站根目录会导致localhost,localhost/phpmyadmin访问不到. 解决方法: 打开apache的配置文件:“../apache/conf/extra/httpd-vhosts.conf”,加入下面代码: <VirtualHost *:80> DocumentRoot "F:/xampp_web" ServerName localhost </VirtualHost> Documen

wamp环境网站根目录更改

1.修改wampserver的默认目录 安装好wampserver后,网站根目录默认为:安装目录\wamp\www,也就是wampserver安装目录下的www文件夹. 我们以更改为:D\www为例. 打开wamp\scripts\config.inc.php 第47行,$wwwDir =$c_installDir.’/www’;( $c_installDir是个变量,指WAMPserver安装根目录.) 修改为:$wwwDir ='D:/www';即可. 第2步 2.修改Apache默认根目录

1:wamp如何更改网站根目录DocumentRoot 2:php的error_log文件(txt)会每秒几十K增大

wamp如何更改网站根目录DocumentRoot     想必很多人都使用wamp来开发php的web应用吧,同时某些情况下我们或许需要修改服务器的根目录来方便我们搭建和开发网站,接下里我们将说明如何更改wamp的根目录. 总共要修改3个地方 第一步,打开wamp/scripts/config.inc.php文件,找到$wwwDir = $c_installDir.'/www';修改为:$wwwDir = 'X:/xx'; 第二步,修改Apache默认根目录,打开apache的配置文件http

Tomcat中更改网站根目录

原文http://www.codesec.net/view/401617.html 1.tomcat原来的默认根目录是http://localhost:8080,如果想修改访问的根目录,可以这样: 找到tomcat的server.xml(在conf目录下),找到: 复制代码 代码如下: <Host name="localhost" appBase="webapps"       unpackWARs="true" autoDeploy=&q

Tomcat中更改网站根目录和默认页的配置方法

1.tomcat原来的默认根目录是http://localhost:8080,如果想修改访问的根目录,可以这样: 找到tomcat的server.xml(在conf目录下),找到: <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespace

Nginx网站服务

一.简介 Nginx ("engine x") 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器.Nginx是由Igor Sysoev为俄罗斯访问量第二的Rambler.ru站点开发的,第一个公开版本0.1.0发布于2004年10月4日.其将源代码以类BSD许可证的形式发布,因它的稳定性.丰富的功能集.示例配置文件和低系统资源的消耗而闻名.2011年6月1日,nginx 1.0.4发布. Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件