...... upstream 10.15.97.136 { server 10.15.97.133:443 weight=5 max_fails=3 fail_timeout=30s; server 10.15.97.132:443 weight=5 max_fails=3 fail_timeout=30s; } ...... server { listen 443 ssl; ..... location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-Proto https; proxy_redirect http:// $scheme://; proxy_pass https://10.15.97.136/justin/; proxy_cookie_path /justin/ /; #這裏的路徑要注意對應關係 proxy_set_header Cookie $http_cookie; }
上面配置就能輕鬆實現代理,因爲原始路徑和代理路徑發生了變化,致使 session 丟失,服務端獲取的 session無效。若是路徑代理路徑和原始路徑發生改變,就必須告訴服務器,加上路徑轉換proxy_cookie_path /edr /;能夠將/edr的cookie輸出到/上,Tomcat的session正常了。html
若是須要更復雜的路徑轉換可用通配符的方式進行轉換,詳情要查看http://nginx.org/en/docs/http/ngx_http_proxy_module.html?&_ga=1.161910972.1696054694.1422417685#proxy_cookie_path了。nginx