構成
- Ubuntu サーバー 11.10 64 ビット
- Amazon AWS、Ec2、クラウド上でホスト
- t1.micro インスタンス
他に何か書く前に、私は両方をチェックしたことを述べておきたいと思いますnginx 502 不正なゲートウェイそしてNginx + PHP-FPM 502 不正なゲートウェイスレッドがありますが、残念ながらこの点に関しては役に立ちませんでした。
この問題はよくあるようです。nginxやphp-fpmの設定ミスで502 Bad Gateway
エラーが発生することがありますが、これは私が解決できなかったものです。ドメインルートに行っても特定のディレクトリを指定せずに実行します。
ポート 9000 が有効、ポート 80 が開いている状態で、Amazon EC2 Web サーバーを実行しています。
特に問題なのは、どうすればこの厄介なエラーを回避できるか?あるいは、もっと良いのは、どうすれphp5-fpm
ば実際に働く。
これまで私が試みてきたこと
構成ファイル、特にphp-fpm.conf
およびの編集はほぼ一貫していますnginx.conf
。
私。 php-fpm.conf
以下の内容を追加しましたが、あまり役に立ちませんでした。
;;;;;;;;;;;;;
; Fpm Start ;
;;;;;;;;;;;;;
;pm.start_servers = 20
;pm.min_spare_servers = 5
;pm.max_spare_servers = 35
さて、その後、設定ファイルを含めてみました:
include=/etc/php5/fpm/*.conf
それは私をさらに困惑させただけだった。
完全な構成
;;;;;;;;;;;;;;;;;;;;;
; FPM Configuration ;
;;;;;;;;;;;;;;;;;;;;;
; All relative paths in this configuration file are relative to PHP's install
; prefix (/usr). This prefix can be dynamicaly changed by using the
; '-p' argument from the command line.
; Include one or more files. If glob(3) exists, it is used to include a bunch of
; files from a glob(3) pattern. This directive can be used everywhere in the
; file.
; Relative path can also be used. They will be prefixed by:
; - the global prefix if it's been set (-p arguement)
; - /usr otherwise
;include=/etc/php5/fpm/*.conf
;;;;;;;;;;;;;;;;;;
; Global Options ;
;;;;;;;;;;;;;;;;;;
[global]
; Pid file
; Note: the default prefix is /var
; Default Value: none
pid = /var/run/php5-fpm.pid
; Error log file
; Note: the default prefix is /var
; Default Value: log/php-fpm.log
error_log = /var/log/php5-fpm.log
; Log level
; Possible Values: alert, error, warning, notice, debug
; Default Value: notice
log_level = notice
; If this number of child processes exit with SIGSEGV or SIGBUS within the time
; interval set by emergency_restart_interval then FPM will restart. A value
; of '0' means 'Off'.
; Default Value: 0
;emergency_restart_threshold = 0
; Interval of time used by emergency_restart_interval to determine when
; a graceful restart will be initiated. This can be useful to work around
; accidental corruptions in an accelerator's shared memory.
; Available Units: s(econds), m(inutes), h(ours), or d(ays)
; Default Unit: seconds
; Default Value: 0
emergency_restart_interval = 0
; Time limit for child processes to wait for a reaction on signals from master.
; Available units: s(econds), m(inutes), h(ours), or d(ays)
; Default Unit: seconds
; Default Value: 0
;process_control_timeout = 0
; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
; Default Value: yes
daemonize = no
;;;;;;;;;;;;;
; Fpm Start ;
;;;;;;;;;;;;;
;pm.start_servers = 20
;pm.min_spare_servers = 5
;pm.max_spare_servers = 35
;;;;;;;;;;;;;;;;;;;;
; Pool Definitions ;
;;;;;;;;;;;;;;;;;;;;
; Multiple pools of child processes may be started with different listening
; ports and different management options. The name of the pool will be
; used in logs and stats. There is no limitation on the number of pools which
; FPM can handle. Your system will tell you anyway :)
; To configure the pools it is recommended to have one .conf file per
; pool in the following directory:
include=/etc/php5/fpm/pool.d/*.conf
ii。nginx.conf
正直に言うと、この構成は私が訪問したいくつかの Web サイトでのほんの一部ですが、この 502 Bad Gateway 問題が発生する前は、サーバーは正常に動作していました (PHP が動作していなくても)。
問題は主に、何かがひどく間違っているという事実にあります。そして今、 を実行しようとするとservice php5-fpm restart
、おそらく無限ループか何かに陥ってしまい、そこから抜け出すCTRLことすらできません。C
完全な構成
user www-data;
worker_processes 1;
pid /var/run/nginx.pid;
events {
worker_connections 64;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush off;
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;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
server {
listen 80;
server_name ec2-xx-xx-xx-xx.compute-x.amazonaws.com;
location ~ ^(.+\.php)(.*)$ {
root /home/wayvac/public;
fastcgi_pass unix:/var/run/php5-fpm.pid;
#fastcgi_pass 127.0.0.1:9000; #Un-comment this and comment "fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;" if you are not using php-fpm.
fastcgi_index index.php;
set $document_root2 $document_root;
if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param SCRIPT_FILENAME $document_root2$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root2$fastcgi_path_info;
include fastcgi_params;
fastcgi_param DOCUMENT_ROOT $document_root2;
}
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
root /home/wayvac/public;
index index.html index.htm index.php;
}
location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
# Some basic cache-control for static files to be sent to the browser
expires max;
add_header Pragma public;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
}
#include drop.conf;
#include php.conf;
}
}
ベストアンサー1
もし誰かが私と同じ問題に遭遇してこのページを見つけたら、私は答えを見つけましたここ。
クリックして自分で解決するのが面倒な人のために... ;)
条件:
NGINX と PHP 5.3 を搭載した Ubuntu または Debian サーバーは正常に動作しますが、PHP を 5.4 にアップグレードすると 502 Bad Gateway エラーが発生します。ポート 9000 で実行されているサービス (通常は実行中netstat -lp
または類似) を検索しても何も返されません。
修正方法:
/etc/php5/fpm/pool.d/www.conf
'listen'パラメータを開いてメモします(私の場合/var/run/php5-fpm.sock
):
; The address on which to accept FastCGI requests.
; Valid syntaxes are:
; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific address on
; a specific port;
; 'port' - to listen on a TCP socket to all addresses on a
; specific port;
; '/path/to/unix/socket' - to listen on a unix socket.
; Note: This value is mandatory.
listen = /var/run/php5-fpm.sock
そして、vhost 内の fastcgi_pass 変数を、先ほどメモした場所に置き換えます。
このサンプルのsymfony2の設定(ここ):
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ ^/(app|app_dev)\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
}
こうなります:
# pass the PHP scripts to FastCGI server at /var/run/php5-fpm.sock
location ~ ^/(app|app_dev)\.php(/|$) {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
}
次に、nginx を再起動します。
sudo /etc/init.d/nginx restart
注記:SF2を使わない場合は~ ^/(app|app_dev)\.php(/|$) {
、~ ^/index\.php(/|$) {
これで誰かの時間が少しでも節約できれば幸いです :)
編集
もちろん、listen = /var/run/php5-fpm.sock
を に変更しlisten = 127.0.0.1:9000
て/etc/php5/fpm/pool.d/www.conf
php5-fpm を再起動することもできます (これにより、vhost を変更する必要がなくなります)。ただし、何らかの理由で php5-fpm がポート 9000 でリッスンするのではなく、ソケット経由で実行するように変更されたと想定する必要があります。
編集2
それでも502エラーが発生する場合は、こちらをご覧ください答え。