Gunicorn: Difference between revisions
From charlesreid1
No edit summary |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| 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: | ||
| Line 17: | Line 19: | ||
https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-14-04 | https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-14-04 | ||
[[Category:Programs]] | |||
[[Category:Web]] | |||
[[Category:Linux]] | |||
[[Category:Python]] | |||
Latest revision as of 05:36, 28 August 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: