Fix issue with uwsgi controlled processes not restarting due to incorrect signal.

This commit is contained in:
Dorian 2016-05-11 18:24:01 -04:00
parent c4e4e8a383
commit 236a7cd5ca
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
[program:{{ uwsgi_app_service_name }}] [program:{{ uwsgi_app_service_name }}]
user={{ web_server_group }} user={{ web_server_group }}
command={{ uwsgi_venv }}/bin/uwsgi --ini {{ uwsgi_config_path }}/{{ uwsgi_app_ini }} command={{ uwsgi_venv }}/bin/uwsgi --ini {{ uwsgi_config_path }}/{{ uwsgi_app_ini }}
stopsignal=TERM stopsignal=QUIT
stdout_logfile = {{ web_root_path }}/logs/supervisor/{{ app_name }}-application.log stdout_logfile = {{ web_root_path }}/logs/supervisor/{{ app_name }}-application.log
stdout_logfile_backups = 5 stdout_logfile_backups = 5
stderr_logfile = {{ web_root_path }}/logs/supervisor/{{ app_name }}-error.log stderr_logfile = {{ web_root_path }}/logs/supervisor/{{ app_name }}-error.log