DEV Community

Kamen
Kamen

Posted on

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

Top comments (0)