Skip to content

Instantly share code, notes, and snippets.

@arkenous
Created April 24, 2016 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arkenous/cc346b94f48b37b9e962654e65373528 to your computer and use it in GitHub Desktop.
Save arkenous/cc346b94f48b37b9e962654e65373528 to your computer and use it in GitHub Desktop.
Nginx configuration file for HelloFlask based on uWSGI
server {
listen 80;
location / {
include uwsgi_params;
uwsgi_pass unix:///tmp/uwsgi.sock;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment