Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Nginx は、Thin(Ruby サーバー)、Node.js サーバー、Tomcat などの他のバックエンド サーバーにリクエストを転送します。それらの間の IPC メカニズムは何ですか?
共有メモリ?ソケット(同じマシンでも)?パイプ?標準IO? (CGI または FastCGI の場合はそうです)
または、他の何か?
設定に応じて、UnixソケットまたはTCPを使用します。
これはTCPを使用します:
upstream my_site { server 127.0.0.1:9292; }
これはUnixソケットを使用します:
upstream my_site { server unix://path/to/socket; }