I found a solution, which involved adding config to the server.xml in each of the Tomcat instances. If the application is running in the ROOT path then add this Context entry within the Host section of the server.xml <Context path="/site1" docBase="ROOT" debug="0" reloadable="true" cachingAllowed="false" allowLinking="true" />by stuartrexking - How to...
Good day. I trying to use Nginx as a reverse proxy in front of two Tomcat instances. Each Tomcat instance is serving up different sites, but I want them on the same domain e.g: Site 1: localhost/site1 (served by tomcat 1, on port 9090) Site 2: localhost/site2 (served by tomcat 2, on port 9190) My conf is like this: worker_processes 1; events { worker_connections 1024; } hby stuartrexking - How to...