Skip to content

Commit

Permalink
Merge pull request #305 from doomedraven/patch-49
Browse files Browse the repository at this point in the history
Create supervisor.conf
  • Loading branch information
kevoreilly authored Mar 4, 2019
2 parents 0a64311 + 2fba4e3 commit fe77b84
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions supervisor.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[program:cuckoo]
command=python cuckoo.py
directory=/opt/CAPE/
user=cuckoo
autostart=true
autorestart=true
stderr_logfile=/var/log/supervisor/cuckoo.err.log
stdout_logfile=/var/log/supervisor/cuckoo.out.log

[program:web]
command=python manage.py runserver 0.0.0.0:8000
directory=/opt/CAPE/web
user=cuckoo
autostart=true
autorestart=true
stderr_logfile=/var/log/supervisor/web.err.log
stdout_logfile=/var/log/supervisor/web.out.log

[program:process]
command=python process.py -p7 auto
user=cuckoo
directory=/opt/CAPE/utils
autostart=true
autorestart=true
stderr_logfile=/var/log/supervisor/process.err.log
stdout_logfile=/var/log/supervisor/process.out.log

[program:rooter]
command=python rooter.py
directory=/opt/CAPE/utils
user=root
autostart=true
autorestart=true
stderr_logfile=/var/log/supervisor/router.err.log
stdout_logfile=/var/log/supervisor/router.out.log

0 comments on commit fe77b84

Please sign in to comment.