I've been searching for a solution online for quite some time but can't seem to find a decent answer, so I might try my luck here...
I'm trying to configure apache+tomcat so that my domain example.com is mapped to a tomcat webapp.
This is the easy part and I figured out I can accomplish this via:
ProxyPass /site ajp://127.0.0.1:8009/site
ProxyPassReverse /site ajp://127.0.0.1:8009/site
I can also access my tomcat itself (to deploy apps etc) via:
ProxyPass / ajp://127.0.0.1:8009/
ProxyPassReverse / ajp://127.0.0.1:8009/
But what if I want my blog.example.com subdomain to be mapped to a wordpress instance? I really can't figure out how to accomplish this, while this is quite a basic setup I assume.
All tips and comments are appreciated a lot!