php專案上線放在伺服器哪裡
php專案上線後放在伺服器的網站根目錄裡, apache的網站根目錄為/var/www/html,nginx的網站根目錄為/usr/share/nginx/html/。
1、更改Nginx的預設網站根目錄
1、Nginx的設定檔預設位於/etc/nginx/nginx.conf
#修改html區塊中的server區塊:
改為如下:
http { server{ listen 80; server_name localhost; location / { root /root; #把默认路径更改为/root下 index index.html index.htm; } }
2.重新載入Nginx
service nginx restart
3.修改檔案權限
預設的根目錄權限為:drwx------ 6 root root 4096 Jun 22 20:12 .
修改為777:
chmod 777 .
2、更改apache預設網站根目錄
1、vi /etc/httpd/conf/httpd.conf
#找到DocumentRoot "/var/www/html" 這一段#apache的根目錄,把/ var/www/html 這個目錄改為/home/wwwroot/web1/htdocs
再找到b25f3f9032903015d928a17f9e057706 #定義apache /var/www/html這個區域,把/var/www/html改成/home/wwwroot/web1/htdocs
2、重啟Apache伺服器
service httpd restart
3、更改權限
chmod -R 755 /home/wwwroot/web1/htdocs chown apache.apache /home/wwwroot/ -R
推薦:【Linux影片教學】
以上是php專案上線放在伺服器哪裡的詳細內容。更多資訊請關注PHP中文網其他相關文章!