【Linux基础知识】CentOS7以RPM包的方式部署高版本PHP7.4(中)

发布 : Linux培训      来源:Linux培训问答

2020-08-21 17:14:48

编辑Apache配置文件

vi /etc/httpd/conf/httpd.conf

安装PHP7.4 FastCGI进程

php-fpm = php fastcgi process manager

yum --enablerepo=remi-php74 install php-fpm

systemctl enable php-fpm

systemctl start php-fpm

systemctl status php-fpm

安装配置NGINX1.6

CentOS7光盘自带

yum install nginx

编辑配置文件:

vi /etc/nginx/nginx.conf

添加内容:

server {

listen 80 default_server;

listen [::]:80 default_server;

server_name _;

root /usr/share/nginx/html;

# Load configuration files for the default server block.

include /etc/nginx/default.d/*.conf;

location / {

}

location ~ .php$ {

try_files $uri =404;

root /var/www/html; #nginx使用apache的web目录,可根据情况自行指定

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

include fastcgi.conf;

}

error_page 404 /404.html;

location = /40x.html {

}

......

编辑测试php文件:

vi /var/www/html/info.php

phpinfo();

?>

THE END  

声明:本站稿件版权均属中公教育优就业所有,未经许可不得擅自转载。

领取零基础自学IT资源

涉及方向有Java、Web前端、UI设计、软件测试、python等科目,内容包含学习路线、视频、源码等

点击申请领取资料

点击查看资料详情 

收起 


 相关推荐

问题解答专区
返回顶部