1、php环境安装

1.1 使用yum安装php-fpm

[root@localhost /]# yum -y install php-fpm	
#启动php-fpm服务
[root@localhost /]# systemctl start php-fpm
[root@localhost /]# systemctl status php-fpm

1.2 修改php的配置文件

#定位到php-fpm的文件下
[root@localhost /]# cd /etc/php-fpm.d/
#修改www.conf文件内容
[root@localhost php-fpm.d]# vim www.conf

在www.conf文件下注释掉listen = /run/php-fpm/www.sock这段内容,添加listen = 127.0.0.1:9000

2、nginx配置

2.1 修改nginx的配置文件

   root html;
    location / {
       index index.php;
	}
    location ~ \.php$ {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
    include fastcgi_params;
    }

2.2 添加php测试文件

#定位到nginx/html文件下
[root@localhost nginx]# cd /usr/local/nginx/html/
#创建web.php页面文件
[root@localhost html]# vim index.php
<?php
phpinfo();
?>

2.3 重启php-fpm服务和nginx

#重启php-fpm服务
[root@localhost html]# systemctl restart php-fpm
[root@localhost html]# systemctl status php-fpm
#重启nginx
[root@localhost html]# cd /usr/local/nginx/sbin/
#停止nginx
[root@localhost sbin]# ./nginx -s reload

2.4 测试

在本地浏览器访问php页面
在这里插入图片描述

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部