我的网站上的一个页面需要在服务器上进行长时间的计算(约2分钟)。如果我在localhost上运行网站,它工作得很好。但在生产时~30秒。下面是我的nginx conf的http部分:
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 120;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
proxy_read_timeout 300;
proxy_connect_timeout 300;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
我试着添加:
fastcgi_read_timeout 300;
proxy_read_timeout 300;
最后(在“服务器”之后),但它没有做任何事情。
2条答案
按热度按时间von4xj4u1#
如果你得到502 Bad Gateway错误,这意味着你的应用程序服务器(我猜它的独角兽根据你的标签)正在发送超时,而不是Nginx,你应该在你的生产服务器的
unicorn.rb
文件中增加超时。如果是Python绿色独角兽,请执行以下操作:
hfwmuf9z2#
通过增加Gunicorn的超时来修复此问题。启动Gunicorn时使用了**--timeout**选项。
您可以在cmd或service中增加此值。现在是60秒
从@matanco answer得到的想法