写点什么

在 centos 中配置 nginx+php 的环境教程。

  • 2023-12-07
    四川
  • 本文字数:559 字

    阅读完需:约 2 分钟

在centos中配置nginx+php的环境教程。

在 CentOS 中配置 Nginx 和 PHP 环境的步骤如下:

  1. 安装 Nginx:

    sudo yum install nginx

  2. 启动 Nginx 服务:

    sudo systemctl start nginx

  3. 安装 PHP 及相关扩展:

    sudo yum install php php-fpm php-mysql

  4. 配置 PHP-FPM:

    编辑 php-fpm 配置文件:

    sudo vi /etc/php-fpm.d/www.conf

    将 user和 group设置为 nginx

    user = nginx group = nginx

    保存并退出。

  5. 启动 PHP-FPM 服务:

    sudo systemctl start php-fpm

  6. 配置 Nginx:

    编辑 Nginx 配置文件:

    sudo vi /etc/nginx/nginx.conf

    在 http块中添加以下内容以处理 PHP 文件:

    server { ... location ~ \.php$ { root /usr/share/nginx/html; fastcgi_pass unix:/run/php-fpm/php-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } ... }

    保存并退出。

  7. 重启 Nginx 服务:

    sudo systemctl restart nginx

现在,你已经在 CentOS 中成功配置了 Nginx 和 PHP 环境。你可以将 PHP 文件放置在 /usr/share/nginx/html目录下,并通过访问 Nginx 服务器的 IP 地址来执行 PHP 文件。

请注意,上述步骤是基本的配置指南,实际操作中可能会有特定的需求和配置。建议参考 Nginx 和 PHP 官方文档或其他详细教程以获得更全面和准确的信息。


香港五网 CN2 网络云服务器链接:www.tsyvps.com

蓝易云香港五网 CN2 GIA/GT 精品网络服务器。拒绝绕路,拒绝不稳定。

发布于: 刚刚阅读数: 5
用户头像

百度搜索:蓝易云 2023-07-05 加入

香港五网CN2免备案服务器

评论

发布
暂无评论
在centos中配置nginx+php的环境教程。_php_百度搜索:蓝易云_InfoQ写作社区