I have isso app running on localhost:63837
and I'd like to proxy requests from https://www.domain.com/isso
These were my approaches:
RewriteRule https://www.domain.com/isso/(.*)$ http://127.0.0.1:63837/$1 [P]
RewriteRule /isso/(.*)$ http://127.0.0.1:63837/$1 [P]
RewriteRule /isso(.*)$ http://127.0.0.1:63837/$1 [P]
Normally I'd adjust httpd-vhost.conf
but in this case I can't do that on my hoster (uberspace).
<Location "/isso">
ProxyPass "http://127.0.0.1:63837"
ProxyPassReverse "http://127.0.0.1:63837"
</Location>
Also, I don't like to use a subdomain for this.