How to configure Apache as a reverse proxy by extracting the host from the path
I'd like to configure Apache as a reverse proxy for that determines the URL to proxy to dynamically by parsing the path of the requested URL. For example, the URL http://proxy-server/app/your-app would get proxied to http://your-app:8000/ and http://proxy-server/app/your-app/some/path would go…