-
-
Save fitoria/acd5aaefc7f31b5848c6 to your computer and use it in GitHub Desktop.
supervisor conf
This file contains 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
[program:myapp] | |
command=/usr/local/sbin/uwsgi | |
--module myapp.deploy.wsgi | |
--socket 10.1.2.3:10000 | |
--master | |
--harakiri 120 | |
--max-requests 5000 | |
user=www-data | |
autostart=true | |
autorestart=true | |
stdout_logfile=/sites/myapp.com/logs/uwsgi.log | |
redirect_stderr=true | |
stopsignal=QUIT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment