Gunicorn: Difference between revisions
From charlesreid1
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
Gunicorn is a Python WSGI (web server gateway interface) that basically acts as glue between the web server and a Python app layer. (At least, that's how I understand it. | Gunicorn is a Python WSGI (web server gateway interface) that basically acts as glue between the web server and a Python app layer. (At least, that's how I understand it. | ||
Plays nicely with [[Nginx]]. | |||
Learned about when setting up Graphite-API service: | Learned about when setting up Graphite-API service: | ||
Revision as of 23:00, 29 March 2015
Gunicorn is a Python WSGI (web server gateway interface) that basically acts as glue between the web server and a Python app layer. (At least, that's how I understand it.
Plays nicely with Nginx.
Learned about when setting up Graphite-API service:
http://graphite-api.readthedocs.org/en/latest/api.html
Found this instruction on nginx, gunicorn, and running flask applications with them:
http://www.onurguzel.com/how-to-run-flask-applications-with-nginx-using-gunicorn/
pip install gunicorn sudo apt-get install nginx
Found this DigitalOcean document on how to install Gunicorn and nginx for running Flask applications on Droplets: