Containerum – Managed Docker Hosting
containerum.com
Containerum – Managed Docker Hosting
1–10 of 44 posts
Re: Containerum – Managed Docker Hosting
#2openresty/1.11.2.5
Re: Containerum – Managed Docker Hosting
#3502 Bad Gateway openresty/1.11.2.5
Re: Containerum – Managed Docker Hosting
#4Re: Containerum – Managed Docker Hosting
#5502 Bad Gateway openresty/1.11.2.5
Re: Containerum – Managed Docker Hosting
#6Based on Google cache results, I suspect that the page's rendered server-side, with React, and the container's really busy doing the same DOM stuff over and over. If owners are reading - I think the easiest trick to try (besides scaling up) would be to tell nginx to cache the index page (with `proxy_cache`), heavily - just don't forget to forcibly drop the cookies on `GET /` requests (for safety). The page from Google's cache looks mostly static, so that should do the trick. It would not know the logged-in state, but at least something would show up.
Re: Containerum – Managed Docker Hosting
#7Re: Containerum – Managed Docker Hosting
#8Re: Containerum – Managed Docker Hosting
#9Seems that container that serves the website hadn't auto-scaled well ;) (currently it's responding with 502 Bad Gateway) Based on Google cache results, I suspect that the page's rendered server-side, with React, and the container's really busy doing the same DOM stuff over and over. If owners are reading - I think the easiest trick to try (besides scaling up) would be to tell nginx to cache the index page (with `prox…