首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >PHP-FPM和Nginx:502错误的网关问题如何解决?

PHP-FPM和Nginx:502错误的网关问题如何解决?
EN

Stack Overflow用户
提问于 2018-03-05 00:46:59
回答 2查看 0关注 0票数 0

组态

  • Ubuntu Server 11.10 64位
  • Amazon AWS,Ec2托管在云上
  • t1.micro实例

这个问题似乎很常见:nginx或php-fpm的配置错误会导致502 Bad Gateway错误,这是我无法摆脱的。请注意,甚至当我转到我的域根目录时也会出现这种情况,而不指定任何特定的目录

我运行的是Amazon EC2网络服务器,启用了端口9000,端口80打开等。

这个问题特别是,我该如何摆脱这个令人讨厌的错误?或者,更好的,我怎样才能php5-fpm实际工作中

我迄今为止所做的尝试

配置文件大多是一致的编辑,特别是php-fpm.confnginx.conf

i。 PHP-fpm.conf

我添加了以下内容,这并没有太多帮助:

代码语言:javascript
复制
;;;;;;;;;;;;;
; Fpm Start ;
;;;;;;;;;;;;;

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

现在,之后我尝试包括我的配置文件:

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

这只会让我更糟。

全配置

代码语言:javascript
复制
;;;;;;;;;;;;;;;;;;;;;
; 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

iinginx.conf

诚实地说,这个配置只是我访问过的一些网站的一小部分,但我可以告诉你,在这个502 Bad Gateway业务之前,服务器运行良好(没有PHP工作。期间)。

这个问题主要在于事情非常糟糕,非常错误。而现在,当我尝试去做时service php5-fpm restart,它会陷入我所猜测的无限循环或某种东西,而我甚CTRL至无法做到C。

完整配置

代码语言:javascript
复制
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;
    }
}
EN

回答 2

Stack Overflow用户

发布于 2018-03-05 09:36:11

如果有人通过遇到同样的问题发现此页面,我在这里找到了答案:http : //www.howtoforge.com/installing-nginx-with-php5-and-php-fpm-and-mysql-support-lemp -酮的ubuntu-12.04-LTS

对于那些无法自行点击和解决问题的人......;)

条件:

使用NGINX和PHP 5.3的Ubuntu或Debian服务器可以正常工作,但将PHP升级到5.4会导致502错误的网关错误。寻找在端口9000上运行的服务(通常运行netstat -lp或类似)不会返回任何内容。

修正:

打开/etc/php5/fpm/pool.d/www.conf并记下'listen'参数(在我的情况下/var/run/php5-fpm.sock):

代码语言:javascript
复制
; 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配置(取自http://wiki.nginx.org/Symfony):

代码语言:javascript
复制
  # 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;
  }

变成这样:

代码语言:javascript
复制
  # 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:

代码语言:javascript
复制
sudo /etc/init.d/nginx restart

注意:更换~ ^/(app|app_dev)\.php(/|$) {~ ^/index\.php(/|$) {,如果你不是在SF2 **

希望这可以节省一些时间:)

当然,你可以改变listen = /var/run/php5-fpm.sockto listen = 127.0.0.1:9000/etc/php5/fpm/pool.d/www.conf然后重新启动php5-fpm(这会让你不必改变你的虚拟主机),但是你必须假设他们改变了php5-fpm来运行socket而不是在端口9000上运行原因。

票数 0
EN

Stack Overflow用户

发布于 2018-03-05 10:27:12

尝试设置这些值,它解决了快速cgi中的问题。

代码语言:javascript
复制
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/-100007508

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档