Files
honeypot.es/supervisord.conf

43 lines
840 B
Plaintext
Raw Permalink Normal View History

[supervisord]
nodaemon=true
logfile=/dev/null
logfile_maxbytes=0
pidfile=/tmp/supervisord.pid
user=root
[program:redis]
command=redis-server --bind 127.0.0.1 --loglevel warning
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
priority=10
[program:dataserver]
command=python3 /app/DataServer.py
directory=/app
autostart=true
autorestart=true
startsecs=5
startretries=999
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
priority=20
[program:attackmapserver]
command=python3 /app/AttackMapServer.py
directory=/app
autostart=true
autorestart=true
startsecs=5
startretries=999
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
priority=30