2 回答

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超2個(gè)贊
默認(rèn)網(wǎng)站根目錄為/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
已經(jīng)安裝了samba,所以要將vi /etc/samba/smb.conf中的[public]下的path值改為
path = /home/www/
- 2 回答
- 0 關(guān)注
- 2234 瀏覽
添加回答
舉報(bào)