I am trying to achieve this:
subdomain.mydomain.com/customerA -> internalserver1/application/ subdomain.mydomain.com/customerB -> internalserver2/application/
This broght me to the login page of the application (on mobile only and with no images):
ProxyPass /customerA http://internalserver1/application
ProxyPassReverse /customerA http://internalserver1/application
ProxyPass /customerB http://internalserver2/application
ProxyPassReverse /customerB http://internalserver2/application
Reading here made me add this:
ProxyPass /application http://internalserver1/application
ProxyPassReverse /application http://internalserver1/application
This made images available, but I don't see how to apply this to multiple servers.
I think I need to use mod_rewrite, but I don't get how. Also, I don't get why the above only works on mobile and not on desktop.
Thanks!