I need to maintain communication between nginx and upstream nodejs.
Compiled and installed nginx 1.2.0
my configuration file:
upstream backend { ip_hash; server dev:3001; server dev:3002; server dev:3003; server dev:3004; keepalive 128; } server { listen 9000; server_name dev; location / { proxy_pass http:
My program (dev: 3001 - 3004) detects that the connection was closed by nginx after the response.
document
guilin 桂林 May 01 '12 at 9:25 a.m. 2012-05-01 09:25
source share