4.3.2. 使用带有 nginx web 服务器的 PHP
配置 nginx web 服务器,以处理 RHEL 10 系统上的 PHP 脚本。
先决条件
- 在您的系统上安装 PHP 脚本语言。
流程
配置
nginxweb 服务器和php-fpm,以运行 PHP 脚本。安装
nginx软件包:# dnf install nginx启动
nginx服务器:# systemctl start nginx或者,如果
nginx服务器已在您的系统中运行,请在安装 PHP 后重启nginx服务:# systemctl restart nginx启动
php-fpm服务:# systemctl start php-fpm可选: 在引导时启用这两个服务:
# systemctl enable php-fpm nginx要获取 PHP 设置的信息,请在
/usr/share/nginx/html/目录中使用以下内容创建index.php文件:# echo '<?php phpinfo(); ?>' > /usr/share/nginx/html/index.php要运行
index.php文件,请将浏览器指向:http://<hostname>/可选:如果您有具体要求,请调整配置:
-
/etc/nginx/nginx.conf-nginx主配置 -
/etc/nginx/conf.d/php-fpm.conf- FPM 配置nginx -
/etc/php-fpm.conf- FPM 主配置 -
/etc/php-fpm.d/www.conf- 默认www池配置
-
运行 "Hello, World!"使用 nginx 服务器的 PHP 脚本。
在
/usr/share/nginx/html/目录中为您的项目创建一个hello目录:# mkdir hello在
/usr/share/nginx/html/hello/目录中创建一个包含以下内容的hello.php文件:# <!DOCTYPE html> <html> <head> <title>Hello, World! Page</title> </head> <body> <?php echo 'Hello, World!'; ?> </body> </html>启动
nginx服务器:# systemctl start nginx要运行
hello.php文件,请将浏览器指向:http://<hostname>/hello/hello.php因此,会显示带有 "Hello, World!" 文本的网页。
如需更多信息,请参阅
nginx (8)和php-fpm (8)man page。