Created
June 2, 2018 03:30
-
-
Save ranjanashish/e9f17392632cb28ba919d5799d3f15a4 to your computer and use it in GitHub Desktop.
uwsgi configuration for python projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[uwsgi] | |
socket = %d/uwsgi.sock | |
chmod-socket = 666 | |
chdir = %d/.. | |
wsgi-file = wsgi_gevent.py | |
callable = app | |
gevent = 500 | |
master = true | |
workers = 1 | |
stats = 0.0.0.0:5001 | |
stats-http = true | |
memory-report = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment