Hi, let's say I use upstream to push the requests to Rails for example like this: upstream thin { server 127.0.0.1:8000; server 127.0.0.1:8001; server 127.0.0.1:8002; } server { listen 80; server_name localhost; access_log /var/log/nginx/localhost.access.log; root /var/www/test/public; location / { proxy_set_header X-Real-IP $remote_addr; proxy_sby saile - Nginx Mailing List - English
any idea?by saile - Nginx Mailing List - English
Hi, I am trying to combine a Rails & Thin configuration with the nginx push module. I have these two config snippets: Rails & Thin: upstream thin { server 127.0.0.1:8000; server 127.0.0.1:8001; server 127.0.0.1:8002; } server { listen 80; server_name localhost; access_log /var/log/nginx/localhost.access.log; root /var/www/test/public; locationby saile - Nginx Mailing List - English