Questions tagged «puma»

6
地址已在使用中-bind(2)(Errno :: EADDRINUSE)
我正在尝试通过Puma Web服务器部署Rails应用程序。尝试使用配置文件启动Puma服务器时,出现bundle exec puma -C config/puma.rb错误,表明该地址已被使用。 有人知道如何解决这个问题吗? bundle exec puma -C config/puma.rb [23699] Puma starting in cluster mode... [23699] * Version 2.11.3 (ruby 2.0.0-p353), codename: Intrepid Squirrel [23699] * Min threads: 5, max threads: 5 [23699] * Environment: development [23699] * Process workers: 2 [23699] * Preloading application Jdbc-MySQL is …

11
NGINX:上游超时(110:连接超时),同时从上游读取响应头
我让Puma作为上游应用程序服务器运行,而Riak作为我的后台数据库集群。当我发送一个请求以减少约25K用户的数据块并将其从Riak返回到应用程序时,在Nginx日志中出现错误: 从上游读取响应标头时上游超时(110:连接超时) 如果我在没有nginx代理的情况下直接查询我的上游,并且请求相同,则会获得所需的数据。 一旦放置代理,就会发生Nginx超时。 **nginx.conf** http { keepalive_timeout 10m; proxy_connect_timeout 600s; proxy_send_timeout 600s; proxy_read_timeout 600s; fastcgi_send_timeout 600s; fastcgi_read_timeout 600s; include /etc/nginx/sites-enabled/*.conf; } **virtual host conf** upstream ss_api { server 127.0.0.1:3000 max_fails=0 fail_timeout=600; } server { listen 81; server_name xxxxx.com; # change to match your URL location / { # match …
130 nginx  timeout  puma 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.