What kind of information is needed? My nginx config? Anything else?
BTJ
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,253367,253510#msg-253510
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
No one have any insights on this?
BTJ
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,253367,253503#msg-253503
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
I have Nginx as a reverse proxy in front of a Tomcat server running a
webapp.
This works ok using Firefox but not Chrome or IE... When using Chrome or IE,
the JSESSIONID gets a new value for each request (instead of keeeping the
same value as it should).
Are there some settings I am missing to fix
I have the following config..:
server {
listen 80;
server_name site.example.com;
access_log /var/log/nginx/site.example.com_access.log main;
location / {
rewrite ^ http://site.example.com/webapp;
}
location /webapp/ {
proxy_redirect off;
proxy_