nginx 奇怪的 php 问题

nginx 奇怪的 php 问题

我刚刚设置完 centos 7 服务器。我已经安装了 PHP 7 和 nginx 以及 apache。我正在根据需要在它们之间切换以进行测试。

当我使用 apache 时,一切都运行正常。

当我使用 nginx 时,所有静态内容也能正常工作。

尝试使用 PHP 时,所有小内容都可以正常工作。当有一些大内容时,例如 phpinfo() 的输出或大型 SQL SELECT,脚本会失败且没有任何错误(浏览器显示没有数据)。

我检查了 nginx 日志,它说由于访问被拒绝,一些对 php-fpm 的 open() 失败了,但我没有看到任何错误,两个进程都以相同的 uid(apache)运行。

可能是超时问题吗?如果不是,还有什么问题?已添加配置(example.com 是服务器)

nginx.conf

user apache;
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;

    index index.php index.html index.htm;
    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80 default_server;
        # listen       [::]:80 default_server;
        server_name  examplecom www.examplecom;
        root         /var/www/example.com/;


        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

        location ~ \.php$ {
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
        }       


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

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

nginx 错误日志

2017/01/07 15:15:38 [crit] 5343#0: *60 open() "/var/lib/nginx/tmp/fastcgi/1/01/0000000011" failed (13: Permission denied) while reading upstream, client: 176.92.90.252, server: example.com, req
uest: "GET /adminer.php?sqlite=.... HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "example.com", referrer: "https://www.example.com/adminer.php?...."

php-fpm 配置未改变(/etc/php-fpm.conf 和 /etc/php-fpm.d/www.conf 不变)。

谢谢。

答案1

nginx由于您以用户身份运行apache,因此您无权访问/var/lib/nginx/具有0700访问权限并由用户拥有的nginx

nginx因此,最好的办法是再次以用户身份运行nginx并相应地更改 www 根目录的访问权限。否则,您将不得不更改所有者,而所有者的权限/var/lib/nginx可能会被更新覆盖,这感觉不对劲。

相关内容