I have a working Python based webapp, Flask. (configured to work on http: // host: port)
I need to get it to work with https. I was provided with an Apache proxy that redirects all requests this way:
(Apache) https: // host / myApp -> http: // host: port (my Flask-based application). Where host: port is the standard configuration in which my application works fine.
I can contact the service and index page. However, there is a problem with access to all static content, for which the vi url_for method was requested (for example, ico, images, etc.).
Can you tell me any resources / information? Thanks in advance.
source
share