为什么 php 函数无法在我的 nginx 中运行?

为什么 php 函数无法在我的 nginx 中运行?

PHP7和nginx就这样安装在centos7上了。

安装 php7

sudo  rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm   
sudo  yum install php70w  php70w-common

现在用 来检查一下php -v

PHP 7.0.19 (cli) (built: May 12 2017 21:01:27) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
    with Zend OPcache v7.0.19, Copyright (c) 1999-2017, by Zend Technologies

安装 nginx

wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -ivh epel-release-latest-7.noarch.rpm
sudo yum install nginx
sudo systemctl start nginx
sudo systemctl enable nginx.service

在 /usr/share/nginx/html 中 vim info.php。

<?php
phpinfo();
?>

输入vps_ip/info.php,我得到的结果如下。

为什么函数 phpinfo() 无法执行?
这是我的 nginx 配置文件。

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /usr/share/nginx/html;

        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

在此处输入图片描述

答案1

Nginx 是一个 Web 服务器,而不是应用服务器。你需要一些应用服务器来解释你的 php/ruby/python 代码。

php-fpm根据您的情况,安装:

yum install php70w-fpm

并将以下内容添加到您的服务器配置中:

location ~ \.php$ {
    try_files $uri =404;
    fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}

这确保所有以 结尾的文件都*.php将由 (PHP 的 FastCGI 进程管理器) 处理php-fpm。在这种情况下,监听 UNIX 套接字。

确保/etc/php-fpm.d/www.conf配置为监听套接字:

;listen = 127.0.0.1:9000
listen = /var/run/php-fpm/php-fpm.sock

或者仅在 nginx 服务器配置中使用 TCP 端口:

fastcgi_pass 127.0.0.1:9000;

最后重新启动nginxphp-fpm

systemctl restart php-fpm.service
systemctl restart nginx.service

答案2

你想要的是安装 php-fpm 并让 nginx 使用它来处理 php。 问题不好,答案也不好:阅读文档。 或者至少找到一个好的 LEMP 堆栈,如下所示:https://www.howtoforge.com/tutorial/install-nginx-with-php-and-mysql-lemp-stack-on-centos/

相关内容