My tomcat application is not being getting invoked by nginx.
Tomcat App working fine at: http://localhost:8080/web/
Nginx URL: http://localhost/web
nginx configuration:
location /web {
proxy_pass http://localhost:8080/web;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
I think it would be something like: