栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > PHP

LNMP搭建:测试PHP解析

PHP 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

LNMP搭建:测试PHP解析

记得测试之前要关闭防火墙并禁止开机启动!!!!

[root@centos6 local]# iptables -F

[root@centos6 local]# iptables-save

# Generated by iptables-save v1.4.7 on Fri Jan 13 00:27:50 2017

*filter

:INPUT ACCEPT [9:680]

:FORWARD ACCEPT [0:0]

:OUTPUT ACCEPT [6:672]

COMMIT

# Completed on Fri Jan 13 00:27:50 2017

[root@centos6 local]# chkconfig iptables off

1.安装好LNMP之后,使用浏览器访问服务器IP可以看到Nginx的欢迎页,证明安装成功。

2.这个欢迎页原文件在/nginx/html/目录下,这个目录下的文件可以直接被访问。

[root@centos6 nginx]# cd html

[root@centos6 html]# ls

50x.html  index.html

[root@centos6 html]# cat index.html |less

Welcome to nginx!

   body {

       width: 35em;

       margin: 0 auto;

       font-family: Tahoma, Verdana, Arial, sans-serif;

   }

Welcome to nginx!

If you see this page, the nginx web server is successfully installed and

working. Further configuration is required.

For online documentation and support please refer to

nginx.org.

Commercial support is available at

……

3.要想解析php文件,需要编辑Nginx配置文件

[root@centos6 nginx]# vim /usr/local/nginx/conf/nginx.conf

4.去掉php配置前面的注释符#,并更改网站根目录

……

# proxy the PHP scripts to Apache listening on 127.0.0.1:80

       #

       #location ~ .php$ {

       #    proxy_pass   http://127.0.0.1;

       #}

       # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

       #

       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;

           include        fastcgi_params;

       }

……

4.重新加载nginx配置文件:

[root@centos6 html]# nginx -s reload

5.在网站根目录/usr/local/nginx/html/下添加一个info.php文件:

[root@centos6 html]# vim info.php

phpinfo();

?>

6.使用浏览器看到已经可以解析PHP

7.使用curl测试,默认访问的是index.html

[root@centos6 html]# curl localhost

8.使用curl测试info.php

[root@centos6 html]# curl localhost/info.php


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/229061.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号