How unicorn talks to nginx - an introduction to unix sockets in Ruby Ruby application servers are typically used together with a web server like nginx. When user requests a page from your Rails app, nginx delegates the request to the application server. But how exactly does that work? How does nginx talk with unicorn? One of the most efficient options is to use unix sockets. Let's see how they wor

