0
0
Fork 0

[Nanobox] Tuning Update (#6660)

Various preformance and stability enhancements for instances deployed via Nanobox.
This commit is contained in:
Daniel Hunsaker 2018-03-06 13:59:35 -07:00 committed by Eugen Rochko
parent 81cefc1913
commit b725924f0a
3 changed files with 110 additions and 16 deletions

View file

@ -58,15 +58,21 @@ http {
proxy_pass_header Server;
proxy_pass http://rails;
proxy_buffering off;
proxy_buffering on;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_cache CACHE;
proxy_cache_valid 200 7d;
proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
tcp_nodelay on;
}
}
proxy_cache_path /data/var/cache/nginx levels=1:2 keys_zone=CACHE:10m inactive=7d max_size=1g;
error_page 500 501 502 503 504 /500.html;
}