Gunicorn: Difference between revisions
From charlesreid1
(Created page with "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 applicati...") |
No edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
Learned about when setting up Graphite-API service | 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 | http://graphite-api.readthedocs.org/en/latest/api.html | ||
| Line 11: | Line 15: | ||
sudo apt-get install nginx | sudo apt-get install nginx | ||
</pre> | </pre> | ||
Found this DigitalOcean document on how to install Gunicorn and nginx for running Flask applications on Droplets: | |||
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: