47 lines
982 B
Plaintext
47 lines
982 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=/usr/sbin/opendkim -x /etc/mail/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/mail/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/mail/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/mail/rsyslogd/rsyslog.conf
|