2021-04-14 08:54:49 -04: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 10:36:49 -04:00
|
|
|
[include]
|
|
|
|
files = /etc/supervisor/conf.d/*.conf
|
|
|
|
|
2021-04-14 08:54:49 -04:00
|
|
|
[program:nginx]
|
2022-05-09 17:41:06 -04:00
|
|
|
command=/usr/local/bin/prefix-log /usr/sbin/nginx -g "daemon off;"
|
2021-04-14 08:54:49 -04: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-08-04 07:59:27 -04:00
|
|
|
command=/usr/local/bin/prefix-log /usr/local/bin/redis-server
|
2021-04-14 08:54:49 -04:00
|
|
|
priority=1
|
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
stdout_logfile_maxbytes=0
|
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
stderr_logfile_maxbytes=0
|
|
|
|
username=redis
|
|
|
|
autorestart=true
|
|
|
|
|
2022-06-08 05:57:05 -04:00
|
|
|
# Redis can be disabled if the image is being used without workers
|
|
|
|
autostart={{ enable_redis }}
|
|
|
|
|