4.3.2. 使用带有 nginx web 服务器的 PHP


配置 nginx web 服务器,以处理 RHEL 10 系统上的 PHP 脚本。

先决条件

  • 在您的系统上安装 PHP 脚本语言。

流程

  • 配置 nginx web 服务器和 php-fpm,以运行 PHP 脚本。

    1. 安装 nginx 软件包:

      # dnf install nginx
    2. 启动 nginx 服务器:

      # systemctl start nginx

      或者,如果 nginx 服务器已在您的系统中运行,请在安装 PHP 后重启 nginx 服务:

      # systemctl restart nginx
    3. 启动 php-fpm 服务:

      # systemctl start php-fpm
    4. 可选: 在引导时启用这两个服务:

      # systemctl enable php-fpm nginx
    5. 要获取 PHP 设置的信息,请在 /usr/share/nginx/html/ 目录中使用以下内容创建 index.php 文件:

      # echo '<?php phpinfo(); ?>' > /usr/share/nginx/html/index.php
    6. 要运行 index.php 文件,请将浏览器指向:

      http://<hostname>/
    7. 可选:如果您有具体要求,请调整配置:

      • /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 脚本。

    1. /usr/share/nginx/html/ 目录中为您的项目创建一个 hello 目录:

      # mkdir hello
    2. /usr/share/nginx/html/hello/ 目录中创建一个包含以下内容的 hello.php 文件:

      # <!DOCTYPE html>
      <html>
      <head>
      <title>Hello, World! Page</title>
      </head>
      <body>
      <?php
          echo 'Hello, World!';
      ?>
      </body>
      </html>
    3. 启动 nginx 服务器:

      # systemctl start nginx
    4. 要运行 hello.php 文件,请将浏览器指向:

      http://<hostname>/hello/hello.php

      因此,会显示带有 "Hello, World!" 文本的网页。

      如需更多信息,请参阅 nginx (8)php-fpm (8) man page。

Red Hat logoGithubredditYoutubeTwitter

学习

尝试、购买和销售

社区

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

关于红帽文档

Legal Notice

Theme

© 2026 Red Hat
返回顶部