Imagine you have an Apache server set up with a virtualhost configuration listening to some domain, e.g.
my.domain:8080
You have a Flask app running at:
localhost:5000
You want to add a mod_proxy directive so that:
http://my.domain:8080/app_location/ ---> http://localhost:5000
Most resources will …
