實驗環境:centos7php
注:由於本次實驗在同一臺服務器上,Apache與Nginx同爲80端口,因此改Apache端口爲60html
1 配置Nginx服務器:shell
編輯Nginx配置文件,寫入如下內容apache
location ~ \.php$ {#全部以.php結尾的文件,前面\表明轉義 proxy_pass http://本機IP:60;#本機IP與修改後的Apache端口 root cloud.com;#網站的根目錄 index index.html index.htm; }
編輯Apache文件,修改端口號爲60vim
# vim /etc/httpd/conf/httpd.conf
在httpd的網站根目錄下寫入一個PHP文件centos
[root@cloud ~]# vim /var/www/html/ [root@cloud ~]# cd /var/www/html/ [root@cloud html]# ls a.php [root@cloud html]# cat a.php apache test page
結果測試(本機配置的Nginx服務端口爲70):服務器