kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.0 KiB
88 lines
2.0 KiB
7 years ago
|
[supervisord]
|
||
|
nodaemon=true
|
||
|
|
||
6 years ago
|
[unix_http_server]
|
||
|
file=/var/run/supervisor.sock
|
||
|
|
||
|
[rpcinterface:supervisor]
|
||
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
||
|
|
||
7 years ago
|
[program:web]
|
||
|
priority=4
|
||
|
user=app
|
||
6 years ago
|
environment=HOME="/home/%(ENV_APP_USER)s",USER="%(ENV_APP_USER)s"
|
||
|
directory=%(ENV_APP_PATH)s
|
||
4 years ago
|
command=./docker/prod/web
|
||
7 years ago
|
autorestart=true
|
||
6 years ago
|
stderr_logfile = /dev/stderr
|
||
|
stdout_logfile = /dev/stdout
|
||
|
stdout_logfile_maxbytes = 0
|
||
|
stderr_logfile_maxbytes = 0
|
||
7 years ago
|
|
||
|
[program:worker]
|
||
|
priority=5
|
||
|
user=app
|
||
6 years ago
|
environment=HOME="/home/%(ENV_APP_USER)s",USER="%(ENV_APP_USER)s"
|
||
|
directory=%(ENV_APP_PATH)s
|
||
4 years ago
|
command=./docker/prod/worker
|
||
6 years ago
|
startretries=10
|
||
7 years ago
|
autorestart=true
|
||
6 years ago
|
stderr_logfile = /dev/stderr
|
||
|
stdout_logfile = /dev/stdout
|
||
|
stdout_logfile_maxbytes = 0
|
||
|
stderr_logfile_maxbytes = 0
|
||
7 years ago
|
|
||
|
[program:memcached]
|
||
|
priority=100
|
||
|
user=app
|
||
6 years ago
|
environment=HOME="/home/%(ENV_APP_USER)s",USER="%(ENV_APP_USER)s"
|
||
7 years ago
|
command=/usr/bin/memcached
|
||
|
autorestart=true
|
||
6 years ago
|
stderr_logfile = /dev/stderr
|
||
|
stdout_logfile = /dev/stdout
|
||
|
stdout_logfile_maxbytes = 0
|
||
|
stderr_logfile_maxbytes = 0
|
||
7 years ago
|
|
||
7 years ago
|
[program:cron]
|
||
|
priority=100
|
||
|
user=app
|
||
6 years ago
|
environment=HOME="/home/%(ENV_APP_USER)s",USER="%(ENV_APP_USER)s"
|
||
|
directory=%(ENV_APP_PATH)s
|
||
4 years ago
|
command=./docker/prod/cron
|
||
6 years ago
|
autostart=false
|
||
7 years ago
|
autorestart=true
|
||
6 years ago
|
stderr_logfile = /dev/stderr
|
||
|
stdout_logfile = /dev/stdout
|
||
|
stdout_logfile_maxbytes = 0
|
||
|
stderr_logfile_maxbytes = 0
|
||
7 years ago
|
|
||
7 years ago
|
[program:apache2]
|
||
|
priority=2
|
||
6 years ago
|
directory=%(ENV_APP_PATH)s
|
||
4 years ago
|
command=./docker/prod/proxy
|
||
6 years ago
|
stderr_logfile = /dev/stderr
|
||
|
stdout_logfile = /dev/stdout
|
||
|
stdout_logfile_maxbytes = 0
|
||
|
stderr_logfile_maxbytes = 0
|
||
7 years ago
|
|
||
|
[program:postfix]
|
||
|
priority=100
|
||
|
directory=/etc/postfix
|
||
|
command=/usr/sbin/postfix -c /etc/postfix start
|
||
|
startsecs=0
|
||
|
autorestart=false
|
||
6 years ago
|
stderr_logfile = /dev/stderr
|
||
|
stdout_logfile = /dev/stdout
|
||
|
stdout_logfile_maxbytes = 0
|
||
|
stderr_logfile_maxbytes = 0
|
||
7 years ago
|
|
||
|
[program:postgres]
|
||
|
user=postgres
|
||
|
priority=1
|
||
4 years ago
|
command=%(ENV_PGBIN)s/postgres -D %(ENV_PGDATA)s -c config_file=%(ENV_PGCONF_FILE)s
|
||
7 years ago
|
autorestart=true
|
||
6 years ago
|
stderr_logfile = /dev/stderr
|
||
|
stdout_logfile = /dev/stdout
|
||
|
stdout_logfile_maxbytes = 0
|
||
|
stderr_logfile_maxbytes = 0
|