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
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.
 
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 13:
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

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.

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:

https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-14-04