# 实验环境
- 操作系统:Ubuntu 18.04
- Nginx:1.20.1
- PHP:7.2.24
- PHP-fpm:php7.2-fpm
# 实验步骤
# 安装程序包与依赖
| |
| apt update |
| |
| |
| apt install nginx |
| apt install php php-fpm php-xml php-json php-curl |
| |
| |
| sudo apt-get install php-json |
| sudo apt-get install php-curl |
| sudo apt-get install php-hash |
| sudo apt-get install php-openssl |
| sudo apt-get install php7.2-cgi |
# 编辑 fpm 配置文件
| sudo vim /etc/php/7.2/fpm/php.ini |
| |
| |
| |
| |
| sudo vim /etc/php/7.2/fpm/pool.d/www.conf |
| |
| |
| |
| |
| |
| |
| |
| |
| |
# 配置 Nginx
| sudo vim /etc/nginx/conf/nginx.conf |
| |
| |
| location ~ \.php$ { |
| root /home/wwwroot/; |
| fastcgi_pass 127.0.0.1:9000; |
| fastcgi_split_path_info ^(.+\.php)(.*)$; |
| fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
| fastcgi_param PATH_INFO $fastcgi_path_info; |
| include fastcgi_params; |
| } |
fastcgi_params
和 fastcgi.conf
的区别:
- include fastcgi.conf:
include fastcgi.conf;
通常用于包含 Nginx 默认提供的 FastCGI 配置参数文件。这个文件包含了一些通用的 FastCGI 参数设置,如 fastcgi_param、fastcgi_pass 等。这些参数适用于大多数 FastCGI 应用程序,包括 PHP、Python、Ruby 等。 - include fastcgi_params:
include fastcgi_params;
同样也是包含 FastCGI 配置参数的指令,但它通常比 fastcgi.conf
更加轻量级。 fastcgi_params
文件包含了一些常见的 FastCGI 参数设置,同时避免了一些可能会引起安全问题的参数设置,如 SCRIPT_FILENAME
、 PATH_TRANSLATED
等。这使得 fastcgi_params
更适合用于共享主机环境或需要更严格安全设置的情况。
总的来说,两者的区别在于:
fastcgi.conf
可能包含更多的参数设置,适用于更多类型的 FastCGI 应用程序,但可能包含一些较为宽松的安全设置。fastcgi_params
较为轻量,适用于较为安全和精简的配置需求,特别适合共享主机环境。
# 重启服务
| sudo service php7.2-fpm restart |
| sudo service nginx restart |
# 验收
编写任意 php 文件,比如说简单的有 index.php:
| <h1> |
| <span> Hello, this is test page </span> |
| </h1> |
或者 php 探针:
访问该 php 地址,得到正确的返回结果。完结,Move On!