So, does anybody did a patch of the sticky module? @姚伟斌: Any chance you provide a patch? best regrads Jensby jjk77 - Nginx Mailing List - English
Well, we also use HttpUpstreamFairModule and it works like a charme. You have to define 2 upstream sections, we use the JSESSIONID Cookie for stickiness f.e.: upstream lan_http { server server01 srun_id=a; server server02 srun_id=b; jvm_route $cookie_JSESSIONID reverse; } upstream lan_http_fair { server server01; server server02; fair; } Afteby jjk77 - How to...
The only way to use nginx with multiple certificates and NOT using multiple IPs is to use SNI Support ... This article describs it very good: http://www.carloscastillo.com.ar/2011/05/multiple-ssl-certificates-on-same-ip.html Problem is that not all browsers support this :-/ regrads Jensby jjk77 - How to...
Könnte so klappen: server { listen 80; server_name www.website.de; location / { proxy_set_header Host $host; # noch andere proxy Einstellungen ... proxy_pass http://www.p123456.strato.de; } }by jjk77 - German Forum
Hallo, ich würde gerne die Gzip_static Direktive im Nginx nutzen, habe in meiner Application auch schon alle Resourcen als .gz Dateien liegen, aber anscheinend werde diese Ignoriert. Setup: * Nginx als Loadbalancer und static-Content Cache * ein paar (>10) eingetragene upstream server * Gzip ist on * Gzip_static auch Auf den upstream servern läuft der Jboss der eine Webapp deby jjk77 - German Forum