【nginx】修改服务器根目录
修改/usr/local/nginx/nginx.conf中的配置为以下标红内容,修改完后用./nginx -s reload重启nginx即可。
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /data/www;
index index.php index.html index.htm;
}
location ~ \.php$ {
root /data/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
还没有人抢沙发呢~