码迷,mamicode.com
首页 > Web开发 > 详细

安装PHP到CentOS(YUM)

时间:2020-02-28 18:40:22      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:epel   vim   dex   art   bash   配置yum源   nginx反代   erp   listen   

运行环境

系统版本:CentOS Linux release 7.3.1611
软件版本:PHP-7.2
硬件要求:无

安装过程

1、配置YUM源

[root@localhost ~]# rpm -i http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
[root@localhost ~]# rpm -i https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

2、安装PHP72

[root@localhost ~]# yum -y install php72 php72-php-bcmath php72-php-fpm php72-php-gd php72-php-mbstring php72-php-mysqlnd php72-php-opcache php72-php-pecl-crypto php72-php-pecl-mcrypt php72-php-pecl-memcache php72-php-pecl-mysql php72-php-pecl-redis php72-php-pecl-swoole

3、启动PHP-FPM服务

[root@localhost ~]# systemctl start php7.2-fpm

4、配置Nginx反代PHP

[root@localhost ~]# vim /etc/nginx/conf.d/php72
server {
        listen 80;
        server_name  _php;
        root   "/var/www/html/";

        location / {
                index index.php index.html;
                if (!-e $request_filename){
                        rewrite  ^(.*)$  /index.php?s=$1  last;
                break;
                }
        }

        location ~ ^.*\.php(.*)$ {
            fastcgi_pass   unix:/run/php/php7.2-fpm.sock;
            #连接到PHP-FPM,这里采用UNIX套接字的连接方式,设置由PHP-FPM提供的UNIX套接字文件路径。
            fastcgi_index  index.php;
            #设置PHP默认首页文件。
            fastcgi_param  SCRIPT_FILENAME  /var/www/html/$fastcgi_script_name;
            #设置FastCGI的一个环境变量"SCRIPT_FILENAME",设置FastCGI服务器读取的PHP入口文件完整路径。
            include        fastcgi_params;
            #包含当前配置目录下"fastcgi_param"文件中的所有配置,该文件中存储了一些默认配置FastCGI服务器的一些环境变量,这些变量都有特殊的作用,一般情况下无需修改。
        }
}

安装PHP到CentOS(YUM)

标签:epel   vim   dex   art   bash   配置yum源   nginx反代   erp   listen   

原文地址:https://www.cnblogs.com/network-ren/p/12378328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!