centos7.4 安装 nginx+php7
Posted 牛仔很忙88
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7.4 安装 nginx+php7相关的知识,希望对你有一定的参考价值。
1、安装php7
CentOs 7.X:
rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64
yum install php70w-pgsql
yum install php70w-devel
2、安装 php-fpm
yum install php70w-fpm
systemctl enable php-fpm.service
service php-fpm restart
3、安装 nginx
yum -y install nginx
chkconfig nginx on
service nginx restart
4、nginx 配置 php-fpm
server {
listen 80;
server_name 你的服务器IP或者域名;
index index.php index.html index.html;
root /var/www/html;
client_max_body_size 200m;
location /
{
try_files $uri $uri/ /index.php?$args;
}
location ~ .*\.(php)?$
{
expires -1s;
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi_params;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
}
}
以上是关于centos7.4 安装 nginx+php7的主要内容,如果未能解决你的问题,请参考以下文章