I currently have a server which runs a Python web app on port 8000. It's publicly accessible on the web (at the server's IP) with no issues.
I'd like to make this web app available on a subdomain so that you don't have to access the IP address in order to run the web app. I've already managed to open up a subdomain that mirrors what's on the root directory, but how can I route my Python web app through that subdomain using Apache?
Thanks for any help.