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.
53 lines
1.5 KiB
53 lines
1.5 KiB
7 years ago
|
[supervisord]
|
||
|
nodaemon=true
|
||
|
|
||
|
[program:web]
|
||
|
priority=4
|
||
|
user=app
|
||
|
directory=/usr/src/app
|
||
|
command=./docker/web
|
||
|
autorestart=true
|
||
|
stderr_logfile = /var/log/supervisor/%(program_name)s-stderr.log
|
||
|
stdout_logfile = /var/log/supervisor/%(program_name)s-stdout.log
|
||
|
|
||
|
[program:worker]
|
||
|
priority=5
|
||
|
user=app
|
||
|
directory=/usr/src/app
|
||
|
command=./docker/worker
|
||
|
autorestart=true
|
||
|
stderr_logfile = /var/log/supervisor/%(program_name)s-stderr.log
|
||
|
stdout_logfile = /var/log/supervisor/%(program_name)s-stdout.log
|
||
|
|
||
|
[program:memcached]
|
||
|
priority=100
|
||
|
user=app
|
||
|
command=/usr/bin/memcached
|
||
|
autorestart=true
|
||
|
stderr_logfile = /var/log/supervisor/%(program_name)s-stderr.log
|
||
|
stdout_logfile = /var/log/supervisor/%(program_name)s-stdout.log
|
||
|
|
||
|
[program:apache2]
|
||
|
priority=2
|
||
|
directory=/usr/src/app
|
||
|
command=./docker/proxy
|
||
|
stderr_logfile = /var/log/supervisor/%(program_name)s-stderr.log
|
||
|
stdout_logfile = /var/log/supervisor/%(program_name)s-stdout.log
|
||
|
|
||
|
[program:postfix]
|
||
|
priority=100
|
||
|
directory=/etc/postfix
|
||
|
command=/usr/sbin/postfix -c /etc/postfix start
|
||
|
startsecs=0
|
||
|
autorestart=false
|
||
|
stderr_logfile = /var/log/supervisor/%(program_name)s-stderr.log
|
||
|
stdout_logfile = /var/log/supervisor/%(program_name)s-stdout.log
|
||
|
|
||
|
[program:postgres]
|
||
|
user=postgres
|
||
|
priority=1
|
||
|
command=/usr/lib/postgresql/9.4/bin/postgres -D /var/lib/postgresql/9.4/main -c config_file=/etc/postgresql/9.4/main/postgresql.conf
|
||
|
autorestart=true
|
||
|
stderr_logfile = /var/log/supervisor/%(program_name)s-stderr.log
|
||
|
stdout_logfile = /var/log/supervisor/%(program_name)s-stdout.log
|