[root@LNMP ~]# vim /usr/local/nginx/conf/nginx.conf
成都創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站制作、成都網(wǎng)站建設(shè)與策劃設(shè)計(jì),城中網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)10多年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:城中等地區(qū)。城中做網(wǎng)站價(jià)格咨詢:18982081108
打開以下PHP 相關(guān)項(xiàng)且更改 scripts$fastcgi_script_name;> /usrlocal/nginx/html$fastcgi_script_name;
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
#(scripts$fastcgi_script_name;)
include fastcgi_params;
更改完成以后,保存退出。通過 ip地址可以訪問到 nginx 的首頁。
如下圖:(如果訪問不了可以 嘗試關(guān)掉linux 自帶的防火墻 iptables -F)
[root@LNMP ~]# iptables -F
[root@LNMP ~]# cd /usr/local/nginx/html/ # 在此目錄下寫一個(gè) info.php的腳本
[root@LNMP html]# ls
50x.html index.html
[root@LNMP html]# vim info.php # 編譯一個(gè) info.php 腳本
phpinfo();
?>
通過IP 可以訪問到以下內(nèi)容
至此PHP 解析測(cè)試成功。