47 lines
951 B
Plaintext
47 lines
951 B
Plaintext
[unix_http_server]
|
|
file=/tmp/supervisor.sock
|
|
|
|
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
loglevel=warn
|
|
|
|
[supervisorctl]
|
|
serverurl=unix:///tmp/supervisor.sock
|
|
user=root
|
|
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[program:opendkim]
|
|
autostart=false
|
|
autorestart=true
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|
|
command=opendkim -x /etc/opendkim/opendkim.conf
|
|
|
|
[program:postfix]
|
|
autostart=false
|
|
autorestart=true
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|
|
command=postfix -c /etc/postfix/postfix.conf
|
|
|
|
[program:dovecot]
|
|
autostart=false
|
|
autorestart=true
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|
|
command=dovecot -c /etc/dovecot/dovecot.conf
|
|
|
|
[program:rsyslog]
|
|
autostart=false
|
|
autorestart=true
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|
|
command=rsyslog -f /etc/rsyslog/rsyslog.conf
|