Hacker News new | ask | show | jobs
by 2YwaZHXV 678 days ago
given that it seems like the entire thing is busted, can anyone explain how the unicorn page is being served?
1 comments

They probably have a reverse proxy in front of all their http endpoints and that is still up and able to show the unicorn if the backends aren't responsive.

The static content on the error page might also be on akami or cloudflare side.

makes sense, thanks.

the images on the page are all just base64 encoded right into the html

https://github.blog/news-insights/the-library/unicorn/

  Unicorn has a slightly different architecture.
  Instead of the nginx => haproxy => mongrel cluster setup
  you end up with something like: nginx => shared socket => unicorn worker pools
  
  When the Unicorn master starts, it loads our app into memory. As soon as it’s ready to serve requests it forks 16 workers. Those workers then select() on the socket, only serving requests they’re capable of handling. In this way the kernel handles the load balancing for us.
amazing, thanks!