2021-04-14 14:54:49 +02:00
|
|
|
# This file contains the base config for supervisord, as part of ../Dockerfile-workers.
|
|
|
|
# configure_workers_and_start.py uses and amends to this file depending on the workers
|
|
|
|
# that have been selected.
|
|
|
|
[supervisord]
|
|
|
|
nodaemon=true
|
|
|
|
user=root
|
|
|
|
|
2022-04-14 16:36:49 +02:00
|
|
|
[include]
|
|
|
|
files = /etc/supervisor/conf.d/*.conf
|
|
|
|
|
2021-04-14 14:54:49 +02:00
|
|
|
[program:nginx]
|
2022-05-09 23:41:06 +02:00
|
|
|
command=/usr/local/bin/prefix-log /usr/sbin/nginx -g "daemon off;"
|
2021-04-14 14:54:49 +02:00
|
|
|
priority=500
|
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
stdout_logfile_maxbytes=0
|
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
stderr_logfile_maxbytes=0
|
|
|
|
username=www-data
|
|
|
|
autorestart=true
|
|
|
|
|
|
|
|
[program:redis]
|
2022-05-09 23:41:06 +02:00
|
|
|
command=/usr/local/bin/prefix-log /usr/bin/redis-server /etc/redis/redis.conf --daemonize no
|
2021-04-14 14:54:49 +02:00
|
|
|
priority=1
|
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
stdout_logfile_maxbytes=0
|
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
stderr_logfile_maxbytes=0
|
|
|
|
username=redis
|
|
|
|
autorestart=true
|
|
|
|
|
|
|
|
[program:synapse_main]
|
2022-05-09 23:41:06 +02:00
|
|
|
command=/usr/local/bin/prefix-log /usr/local/bin/python -m synapse.app.homeserver --config-path="{{ main_config_path }}" --config-path=/conf/workers/shared.yaml
|
2021-04-14 14:54:49 +02:00
|
|
|
priority=10
|
|
|
|
# Log startup failures to supervisord's stdout/err
|
|
|
|
# Regular synapse logs will still go in the configured data directory
|
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
stdout_logfile_maxbytes=0
|
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
stderr_logfile_maxbytes=0
|
|
|
|
autorestart=unexpected
|
|
|
|
exitcodes=0
|
|
|
|
|
|
|
|
# Additional process blocks
|
|
|
|
{{ worker_config }}
|