python C Nginx fastcgi截断问题
发布时间:2023-12-12 21:22:38 所属栏目:Nginx 来源:DaWei
导读: 我正在运行一个Django站点,使用fastcgi接口到nginx.但是,某些页面被截断(即,页面源停止,有时在标签的中间).如何解决这个问题(让我知道需要什么额外的信息,我会发贴)
细节:
我正在使用flup,
细节:
我正在使用flup,
我正在运行一个Django站点,使用fastcgi接口到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.pidnginx配置如下: # 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; } } 最佳答案 我在nginx上运行Nagios有相同的确切问题.我在搜索一个答案的时候偶然发现了你的问题,并且看到“许可被拒绝”的相关答案给我打了(或许这会帮助你):> Nginx error.log报告: 2011/03/07 11:36:02 [crit] 30977#0:* 225952 open()“/ var / lib / nginx / fastcgi / 2/65/0000002652”失败(13:权限被拒绝) (编辑:甘南站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- ruby-on-rails-如何配置Nginx代理到Rails应用程序?这样我就
- Flask gevent – SSE超时使用nginx uwsgi
- Nginx返回一个假的200状态代码的空json对象
- 带有PDF和PHP的Apache2-“此文件不是以“%PDF-”开头
- apache/nginx/IIS有什么区别
- .htaccess C nginx中MEAN-stack应用程序的漂亮url
- Nginx错误日志中的消息“X-Accel-Mapping标头丢失”
- node.js-在UNIX域套接字上侦听WebSockets?
- nginx – 一台服务器上的多个域指向错误的站点
- php – MySql插入高CPU负载
推荐文章
站长推荐