mirror of
https://github.com/adferrand/docker-backuppc.git
synced 2023-11-05 04:40:26 +01:00
34 lines
730 B
Plaintext
34 lines
730 B
Plaintext
[unix_http_server]
|
|
file = /tmp/supervisor.sock
|
|
username = dummy
|
|
password = dummy
|
|
|
|
[supervisord]
|
|
logfile = /var/log/supervisord.log
|
|
logfile_maxbytes = 50MB
|
|
logfile_backups = 10
|
|
loglevel = info
|
|
pidfile = /tmp/supervisord.pid
|
|
nodaemon = true
|
|
minfds = 1024
|
|
minprocs = 200
|
|
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[supervisorctl]
|
|
serverurl = unix:///tmp/supervisor.sock
|
|
username = dummy
|
|
password = dummy
|
|
|
|
[program:lighttpd]
|
|
command = /usr/sbin/lighttpd -f /etc/lighttpd/lighttpd.conf -D
|
|
redirect_stderr = true
|
|
stopasgroup = true
|
|
killasgroup = true
|
|
|
|
[program:backuppc]
|
|
command = /usr/local/BackupPC/bin/BackupPC
|
|
redirect_stderr = true
|
|
user = %(ENV_BACKUPPC_USERNAME)s
|