使用supervisord时,nginx不会从fcgiwrap返回错误

时间:2016-08-08 02:11:33

标签: perl nginx fastcgi supervisord

我目前正在测试nginx和fcgiwrap中的perl cgi应用程序。它部分工作。但是我在回复中遇到错误问题。

所有请求都返回200.如果cgi错误,它只返回空白内容。

我正在从supervisord运行nginx和fcgiwrap。

这是我的supervisord.conf文件......

[supervisord]
logfile=/tmp/supervisord.log
nodaemon=true

[fcgi-program:fcgiwrap]
command = /usr/sbin/fcgiwrap
user = www-data
socket = unix:///var/run/supervisor/%(program_name)s.sock
socket_owner = www-data:www-data
socket_mode = 0770
autorestart=true
autostart=true
startsecs=1
startretries=3
stopsignal=QUIT
stopwaitsecs=10
environment=PATH='/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin'
redirect_stderr=false
stdout_logfile=/var/log/fcgiwrap_out.log
stderr_logfile=/var/log/fcgiwrap_err.log

[program:nginx]
command=/usr/sbin/nginx -g 'daemon off;'

我收到/var/log/fcgiwrap_err.log中出现的错误。但是,错误消息,更重要的是状态,不会返回到nginx。

这是我的nginx配置...

server {
    listen 80 default_server;
    listen [::]:80 default_server;

    root /var/www/web;

    index index.html index.cgi;

    server_name _;

    location / {
            try_files $uri $uri/ =404;
    }

    location ~ \.cgi$ {
        gzip off;
        include /etc/nginx/fastcgi_params;
        fastcgi_pass unix:/var/run/supervisor/fcgiwrap.sock;
        fastcgi_index index.cgi;
        fastcgi_param SCRIPT_FILENAME /var/www/web$fastcgi_script_name;
    }

    # deny access to .htaccess files
    location ~ /\.ht {
           deny all;
    }
}

我不确定问题是由于fcgiwrap,nginx还是supervisord的错误配置造成的。

1 个答案:

答案 0 :(得分:0)

你说supervisord监视一个套接字(>),但没有说fcgiwrap使用该套接字。 所以通过这个空套接字的PHP连接永远不会到达fcgiwrap进程,因此你没有来自fcgiwrap的错误消息。

您需要更改fcgiwrap 命令以指定套接字,使用-s参数