我使用的是Nginx服务器,之前从未与之合作过,所以如果我错过了一些愚蠢的事情,我会道歉,但我对这一切都很陌生。
在我的error.log中,我有:
[error] 2105#0: *87 connect() failed (111: Connection refused) while connecting to upstream, client: 86.58.251.66, server: premium.bookboon.com, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "premium.bookboon.com"
我不确定为什么会出现这种错误。这是我的nginx.conf:
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 1024;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
##
# nginx-naxsi config
##
# Uncomment it if you installed nginx-naxsi
##
#include /etc/nginx/naxsi_core.rules;
##
# nginx-passenger config
##
# Uncomment it if you installed nginx-passenger
##
#passenger_root /usr;
#passenger_ruby /usr/bin/ruby;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
#mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
#}
我已经看到很多这些问题通过修复一些php-fpm选项得到解决,但我正在使用的服务器似乎没有使用它,快速{{1}没有任何回报,所以我在这里有点失落。
/ sites-enabled / default:
find / -name "php-fpm"
非常感谢任何帮助。
答案 0 :(得分:0)
Nginx本身不包含任何执行PHP代码的组件。它需要PHP-FPM。
您的nginx配置为使用PHP-FPM,但(正如您所说)未安装PHP-FPM。
如果要运行PHP脚本,则需要安装和配置PHP-FPM。在基于Debian的系统上使用apt-get install php5-fpm
进行安装。您通常还必须安装几个php5-*
库包。 (取决于您要运行的应用程序,因此请阅读其文档或尝试执行它并查找错误消息。)
配置PHP-FPM并不复杂,默认应该有效。请注意,您的nginx配置为通过网络套接字与PHP-FPM通信!确保在/etc/php5/fpm/pool.d/www.conf
文件中listen
参数配置了正确的IP地址和端口组合,例如: listen = 127.0.0.1:9000
。
您通常还需要在php.ini
中进行一些编辑,但这非常特定于您的用例并且超出了此主题。