24 lines
570 B
Plaintext
24 lines
570 B
Plaintext
[unix_http_server]
|
|
file=/var/run/supervisor.sock
|
|
chmod=0700
|
|
|
|
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[supervisorctl]
|
|
serverurl=unix:///var/run/supervisor.sock
|
|
|
|
[program:bind9]
|
|
command=/usr/sbin/named -g -c /etc/bind/named.conf -u bind
|
|
user=bind
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/var/log/supervisor/bind9.err.log
|
|
stdout_logfile=/var/log/supervisor/bind9.out.log
|
|
priority=10 |