Nginx + fastcgi截断问题

Sil*_*der 10 python django fastcgi nginx

我使用fastcgi接口运行一个Django站点到nginx.但是,某些页面正在被截断(即页面源只是停止,有时在标记的中间).我该如何解决这个问题(让我知道需要哪些额外信息,我会发布)

细节:

我正在使用flup,并使用以下命令生成fastcgi服务器:

python ./manage.py runfcgi umask=000 maxchildren=5 maxspare=1 minspare=0 method=prefork socket=/path/to/runfiles/django.sock pidfile=/path/to/runfiles/django.pid
Run Code Online (Sandbox Code Playgroud)

nginx配置如下:

# search and replace this: {project_location}
pid /path/to/runfiles/nginx.pid;
worker_processes  2;
error_log /path/to/runfiles/error_log;
events {
    worker_connections  1024;
    use epoll;
}
http {
    # default nginx location
    include        /etc/nginx/mime.types;
    default_type    application/octet-stream;
    log_format main
        '$remote_addr - $remote_user [$time_local] '
            '"$request" $status $bytes_sent '
        '"$http_referer" "$http_user_agent" '
        '"$gzip_ratio"';
    client_header_timeout  3m;
    client_body_timeout    3m;
    send_timeout           3m;
    connection_pool_size        256;
    client_header_buffer_size    1k;
    large_client_header_buffers    4 2k;
    request_pool_size        4k;
    output_buffers   4 32k;
    postpone_output  1460;
    sendfile        on;
    tcp_nopush             on;
    keepalive_timeout      75 20;
    tcp_nodelay            on;
    client_max_body_size       10m;
    client_body_buffer_size    256k;
    proxy_connect_timeout      90;
    proxy_send_timeout         90;
    proxy_read_timeout         90;
    client_body_temp_path      /path/to/runfiles/client_body_temp;
    proxy_temp_path            /path/to/runfiles/proxy_temp;
    fastcgi_temp_path            /path/to/runfiles/fastcgi_temp;
    gzip on;
    gzip_min_length  1100;
    gzip_buffers     4 32k;
    gzip_types       text/plain text/html application/x-javascript text/xml text/css;
    ignore_invalid_headers    on;
    server {
        listen 80;
        server_name alpha2.sonyalabs.com;
        index index.html;
        root   /path/to/django-root/static;
        # static resources
        location ~* ^/static/.*$
        {
        root   /path/to/django-root;
                expires 30d;
                break;
        }
        location / {
            # host and port to fastcgi server
            fastcgi_pass unix:/path/to/runfiles/django.sock;
            fastcgi_param PATH_INFO $fastcgi_script_name;
            fastcgi_param REQUEST_METHOD $request_method;
            fastcgi_param QUERY_STRING $query_string;
            fastcgi_param CONTENT_TYPE $content_type;
            fastcgi_param CONTENT_LENGTH $content_length;
            fastcgi_pass_header Authorization;
            fastcgi_intercept_errors off;
        }
        location /403.html {
                root   /usr/local/nginx;
                access_log   off;
        }
        location /401.html {
                root   /usr/local/nginx;
                access_log   off;
        }
        location /404.html {
                root   /usr/local/nginx;
                access_log   off;
        }
        location = /_.gif {
                    empty_gif;
                access_log   off;
        }
            access_log    /path/to/runfiles/localhost.access_log main;
            error_log    /path/to/runfiles/localhost.error_log;
        }
}
Run Code Online (Sandbox Code Playgroud)

Fal*_*ken 7

我在nginx上运行Nagios时遇到了同样的问题.我在谷歌上搜索答案时偶然发现了你的问题,并且阅读了"许可被拒绝"的相关答案,这让我感到震惊(也许它会帮助你):

  • Nginx error.log正在报告:

    2011/03/07 11:36:02 [暴击] 30977#0:*225952 open()"/ var/lib/nginx/fastcgi/2/65/0000002652"失败(13:权限被拒绝)

  • 所以我只跑#chown -R www-data:www-data/var/lib/nginx/fastcgi

  • 固定!(谢谢你的间接帮助)


dwc*_*dwc 5

检查错误日志以查找写入.../nginx/tmp/...文件的"权限被拒绝"错误.除非需要临时空间,否则Nginx将正常工作,并且通常发生在32K边界.如果发现这些错误,请确保用户nginx运行的tmp目录是可写的.


Arm*_*her 3

您使用什么 fastcgi 接口以及如何使用。是不是很混乱?如果是,请粘贴您生成服务器的方式以及它如何连接到 nginx。如果没有这些信息,它只是猜测可能会出现什么问题。

可能出现的问题:

  • nginx 有 bug。至少lighttpd有可怕的fastcgi bug,我不知道nginx是否也有一些:)
  • Django 正在因内部系统中的回溯而崩溃,该回溯未正确捕获并关闭 fastcgi 服务器,您无法从客户端看到该服务器。在这种情况下,包装 fastcgi 服务器应用程序调用并尝试/排除它以打印异常。

但服务器日志和配置会很棒。