From fb4651b11f449be96ca63a308d1c55f6759a049e Mon Sep 17 00:00:00 2001 From: mmolitor87 Date: Wed, 15 Nov 2017 12:51:47 -0600 Subject: [PATCH] Change name of location of gunicorn log. (#920) --- allianceauth/project_template/supervisor.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/allianceauth/project_template/supervisor.conf b/allianceauth/project_template/supervisor.conf index eb50d1f6..06f5a0d6 100644 --- a/allianceauth/project_template/supervisor.conf +++ b/allianceauth/project_template/supervisor.conf @@ -27,10 +27,12 @@ priority=998 user = allianceserver directory={{ project_directory }} command={{ gunicorn }} {{ project_name }}.wsgi --workers=3 --timeout 120 +stdout_logfile={{ project_directory }}/log/gunicorn.log +stderr_logfile={{ project_directory }}/log/gunicorn.log autostart=true autorestart=true stopsignal=INT [group:{{ project_name }}] programs=beat,worker,gunicorn -priority=999 \ No newline at end of file +priority=999