Skip to content

Instantly share code, notes, and snippets.

@ashokc
Last active February 17, 2020 23:44
Show Gist options
  • Save ashokc/3e9e626f2ef00a1c5f33b21d558371e6 to your computer and use it in GitHub Desktop.
Save ashokc/3e9e626f2ef00a1c5f33b21d558371e6 to your computer and use it in GitHub Desktop.
location /werkzeug/ {
proxy_pass http://127.0.0.1:9996/;
}
location /uwsgi-http/ {
proxy_pass http://127.0.0.1:9997/;
}
location /uwsgi/ {
rewrite ^/uwsgi/(.*) /$1 break;
include uwsgi_params;
uwsgi_pass 127.0.0.1:9998;
}
location /gunicorn/ {
proxy_pass http://127.0.0.1:9999/;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment