How to redirect a Flask application with Nginx and uWSGI?
When the user enters the url http://localhost:8000/Hello, I need to redirect him to http://localhost:8081/Hello. Here is my attempt on the deploy.conf file: server { listen 8000; location /Hello { include uwsgi_params; uwsgi_pass localhost:8081/Hello; } } But when I check nginx…