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; }