Skip to content

Commit

Permalink
!#106 Fix: settings supervisord application
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Nov 23, 2017
1 parent a2f3259 commit b8f5386
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/templates/etc/supervisor/conf.d/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
nodaemon=true

[group:lannister]
programs=gunicorn,nginx
programs=sanic,nginx

[program:gunicorn]
[program:sanic]
directory=/usr/src/
command=/usr/local/bin/gunicorn -b 0.0.0.0:5000 manage:app -w 3
command=python runserver.py -H 0.0.0.0
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
Expand Down

0 comments on commit b8f5386

Please sign in to comment.