配置方案
- 一、安装软件
- 二、编写配置文件,连接PHP
- 三、引用文件
- 四、测试
鉴于网上教程错综复杂,写下一这篇文章
本教程只需要三步即可
一、安装软件
yum install -y nginx php php-fpm
二、编写配置文件,连接PHP
一般情况下在安装完 nginx 后会有 /etc/nginx/default.d/
这个目录
在这个目录中新建一个 php-fpm.conf
vim /etc/nginx/default.d/php-fpm.conf
把下面内容复制进去
location ~* \.php$ {fastcgi_index index.php;fastcgi_pass 127.0.0.1:9000;include fastcgi_params;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
更改php-fpm的用户和用户组,不配值也行,但是防止后期php要用nginx用户权限更改文件还是配置一下比较好
vim /etc/php-fpm.d/www.conf
看一下 12 行
listen = 127.0.0.1:9000
是否与上面配置中的 fastcgi_pass 值一致
改 39 行为user = nginx
改41 行为group = nginx
三、引用文件
上面文件编写完成后,只需要在需要用到的地方输入 include /etc/nginx/default.d/*.conf;
,比如:
server {listen 80;server_name php.server;root /usr/share/nginx/html;index index.php; # 一定要写!如果编写的是 /etc/nginx/nginx.conf 文件,这一行可能没写# 一定要写在 server 块中include /etc/nginx/default.d/*.conf;error_page 404 /404.html;location = /404.html {}error_page 500 502 503 504 /50x.html;location = /50x.html {}}
四、测试
测试应该不算在总步骤中吧,要是算就是四步完成
把文件 /usr/share/nginx/html/index.html 改为 /usr/share/nginx/html/index.php,并写入 <?php phpinfo(); ?>
mv /usr/share/nginx/html/index.html /usr/share/nginx/html/index.php
echo '<?php phpinfo(); ?>' > /usr/share/nginx/html/index.php
启动 nginx 和 php-fpm 服务
systemctl start nginx php-fpm && systemctl enable nginx php-fpm
访问 http://php.server.ip
,结果如下即为成功
如果没有看见,仔细看一下有没有写错的,如果都没问题证明这一篇文章不适合你