Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP-FPM and Nginx: 502 Bad Gateway

Configuration

  • Ubuntu Server 11.10 64 bit
  • Amazon AWS, Ec2, hosted on the cloud
  • t1.micro instance

Before I write anything else, I'd like to state that I've checked both nginx 502 bad gateway and Nginx + PHP-FPM 502 Bad Gateway threads, which unfortunately haven't helped me in this regard.

The issue appears to be rather common: a misconfiguration of nginx or php-fpm can lead to a 502 Bad Gateway error, which is something that I haven't been able to get rid of. Note that this appears even when I go to my domain root, without specifying any particular directory.

I'm running an Amazon EC2 webserver, with port 9000 enabled, port 80 open, etc.

The question in particular is, how can I get rid of this nasty error? Or, better yet, how can I get php5-fpm to actually work.

What I Have Attempted so Far

Mostly consistent editing of configuration files, notably php-fpm.conf and nginx.conf.

i. php-fpm.conf

I've added the following, which hasn't quite helped much:

;;;;;;;;;;;;; ; Fpm Start ; ;;;;;;;;;;;;;  ;pm.start_servers = 20 ;pm.min_spare_servers = 5 ;pm.max_spare_servers = 35 

Now, afterward I tried including my configuration files:

include=/etc/php5/fpm/*.conf

Which only screwed me even further.

Full Configuration

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

In all honesty this configuration is a smattering of a few websites I've visited, but I can tell you that before this 502 Bad Gateway business, the server was running fine (without PHP working. Period.).

The issue primarily lies in the fact that something is terribly, terribly wrong. And now, when I try to do a service php5-fpm restart, it hangs in what I'm guessing is an infinite loop or something, which I can't even CTRL-C out of.

Full Configuration

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;     } } 
like image 617
zeboidlund Avatar asked Apr 04 '12 01:04

zeboidlund


People also ask

What causes 502 Bad gateway nginx?

In more technical words, A 502 Bad Gateway means that the proxy (gateway) server wasn't able to get a valid or any response from the upstream server. If you are seeing a 502 bad gateway error on a website, it means that the origin server sent out an invalid response to another server that acted as a gateway or proxy.

How does php-fpm work with nginx?

Install PHP-FPM PHP-FPM, on the other hand, runs outside the NGINX environment by creating its own process. Therefore when a user requests a PHP page the nginx server will pass the request to PHP-FPM service using FastCGI. The installation of php-fpm in Ubuntu 18.04 depends on PHP and its version.

Does nginx need php-fpm?

Nginx is the DevOps community's most beloved http web server. And developers love the PHP programming language because it enables them to quickly build and deploy interactive websites. As such, it's no wonder that so many sys admins need to configure Nginx, PHP and PHP-FPM on both Linux and Windows servers.


1 Answers

If anyone finds this page by encountering the same problem I had, I found the answer here.

For those of you who can't be bothered to click and work it out for themselves... ;)

The Condition:

Ubuntu or Debian server with NGINX and PHP 5.3 works fine but upgrading PHP to 5.4 gives 502 Bad Gateway errors. Looking for services running on port 9000 (typically running netstat -lp or similar) returns nothing.

The fix:

Open /etc/php5/fpm/pool.d/www.conf and make a note of the 'listen' parameter (in my case /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 

and replace the fastcgi_pass variable in your vhost with the location you just noted.

So this sample symfony2 configuration (taken from here):

  # 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;   } 

becomes this:

  # 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;   } 

Then restart nginx:

sudo /etc/init.d/nginx restart 

Note: replace ~ ^/(app|app_dev)\.php(/|$) { with ~ ^/index\.php(/|$) { if you're not on SF2**

Hope this saves someone a little bit of time :)

Edit

Of course, you could change the listen = /var/run/php5-fpm.sock to listen = 127.0.0.1:9000 in /etc/php5/fpm/pool.d/www.conf then restart php5-fpm (which would save you from having to change your vhosts), but you have to assume they changed php5-fpm to run through a socket rather than listening on port 9000 for a reason.

Edit2

If you're still experiencing 502 error see this answer.

like image 79
nealio82 Avatar answered Sep 26 '22 03:09

nealio82