Correct install procedure for gunicorn.

Correct docs index links.
This commit is contained in:
Adarnof
2017-12-14 00:01:04 -05:00
parent f037d7fea6
commit 98da0723fc
3 changed files with 13 additions and 6 deletions

View File

@@ -23,6 +23,7 @@ stopwaitsecs = 600
killasgroup=true
priority=998
{% if gunicorn %}
[program:gunicorn]
user = allianceserver
directory={{ project_directory }}
@@ -33,6 +34,7 @@ autostart=true
autorestart=true
stopsignal=INT
{% endif %}
[group:{{ project_name }}]
programs=beat,worker,gunicorn
programs=beat,worker{% if gunicorn %},gunicorn{% endif %}
priority=999