Skip to content

Instantly share code, notes, and snippets.

@darkcl
Created May 22, 2018 15:09
Show Gist options
  • Save darkcl/691691eaa3f5a3364f9de645ef61105a to your computer and use it in GitHub Desktop.
Save darkcl/691691eaa3f5a3364f9de645ef61105a to your computer and use it in GitHub Desktop.
[supervisord]
nodaemon=true
[program:clamd]
directory=/
command=clamd &
autostart=true
autorestart=true
stderr_logfile=/var/log/supervisor/%(program_name)s.log
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
[program:freshclam]
directory=/
command=freshclam -d
autostart=true
autorestart=true
stderr_logfile=/var/log/supervisor/%(program_name)s.log
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
[program:fileservice]
directory=/server
command=npm run debug
autostart=true
autorestart=true
stderr_logfile=/var/log/supervisor/%(program_name)s.log
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment