Flask uwsgi nginx and certbot

dinamitrii

Kamen

Posted on March 10, 2024

Flask uwsgi nginx and certbot

what is the difference to being behind reverse proxy and server block file had to include

location / { include uwsgi_params;
uwsgi_pass ///tmp/myproject.sock; }

and

location / { include proxy_params; proxy_pass http://127.0.0.1:8000; }

in example.com Virtual Host server block on nginx

💖 💪 🙅 🚩
dinamitrii
Kamen

Posted on March 10, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related