mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-24 07:16:35 -06:00
30 lines
878 B
Plaintext
30 lines
878 B
Plaintext
# supervisor config file
|
|
# Adapted from the config file distributed with the supervisor package on Debian
|
|
# Jessie
|
|
|
|
# Enable supervisord in non-daemon mode. Disable the logfile as we receive
|
|
# log messages via stdout/err. Set up the child process log directory in case
|
|
# the user doesn't set logging to stdout/err.
|
|
[supervisord]
|
|
nodaemon = true
|
|
logfile = NONE
|
|
pidfile = /var/run/supervisord.pid
|
|
childlogdir = /var/log/supervisor
|
|
loglevel=debug
|
|
|
|
# Enable supervisorctl via RPC interface over Unix socket
|
|
[unix_http_server]
|
|
file = /var/run/supervisor.sock
|
|
chmod = 0700
|
|
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[supervisorctl]
|
|
serverurl = unix:///var/run/supervisor.sock
|
|
|
|
|
|
# Include conf files for child processes
|
|
# Debian/Ubuntu packages use /etc/supervisor/conf.d
|
|
[include]
|
|
files = /etc/supervisor/conf.d/*.conf |