为什么我与 php-fpm.sock 的连接被拒绝?

为什么我与 php-fpm.sock 的连接被拒绝?

我在这里看到很多关于此问题的问题,但没有一个能给我提供有用的答案。

我一直收到来自 nginx 的 502 错误,所以我查看了 access.log,发现当服务器尝试连接到时,我一直收到错误 111unix:/var/run/php5-fpm.sock

我已经重新启动了 php5-fpm 并确保套接字确实存在,但我仍然收到此错误。

大家知道为什么吗?

我的 nginx.conf

user www-data www-data;
worker_processes auto;
error_log /var/log/nginx_error.log;
pid /run/nginx.pid;

events {
  worker_connections 1024;
}

http {

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

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

  fastcgi_buffers 8 16k;
  fastcgi_buffer_size 32k;
  gzip on;
  gzip_disable "msie6";

  access_log /var/logs/nginx/access.log;
  error_log /var/logs/nginx/access.log;

  server {
    listen 80 default_server;

    root /var/www/app/public/;
    index index.php index.html index.htm =404;

    server_name localhost;

    charset utf-8;

    location / {
      try_files $uri $uri/ /index.php?$query_string =404;
    }

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

  }
}

和 php-fpm.conf这里

答案1

php5-fpm用于SCRIPT_FILENAME查找要解释的 php 文件的路径。我注意到您已注释掉该行。这是疏忽还是该行已移至fastcgi_params包含文件?

相关内容