美文网首页
centos 7安装php

centos 7安装php

作者: IT宝哥哥 | 来源:发表于2020-07-04 16:22 被阅读0次

    查看centos版本

    cat /etc/redhat-release
    uname -a/-r 等
    

    参考
    https://wiki.centos.org/HowTos/php7
    安装好后,配置nginx

    server{
                listen 80;
                server_name t1.com;
                root /var/www/html;
                #非php文件走这里
                location /{
                        index index.html;
                }
                 #php文件走这里
                location ~ \.php$ {
                root           /usr/share/nginx/html;#这里就是下面$document_root的变量值
                fastcgi_pass   127.0.0.1:9000;#代理到php-fpm
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                include        fastcgi_params;#不能少,不然访问会出现空页面
            }
    }
    

    相关文章

      网友评论

          本文标题:centos 7安装php

          本文链接:https://www.haomeiwen.com/subject/hcbuqktx.html