修改nginx默认web目录的求助
1个回答
展开全部
你可以修改nginx配置里的root,比如下面的代码路径是到/data/www读取:
server {
listen 80;
server_name test.abc.com;
root /data/www;
index index.php;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询