-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathsupervisord.conf
More file actions
27 lines (24 loc) · 641 Bytes
/
supervisord.conf
File metadata and controls
27 lines (24 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[supervisord]
nodaemon=true
loglevel=debug
[program:app]
command=bundle exec rails s -p 5000 -b 0.0.0.0
process_name=%(program_name)s_%(process_num)02d
numprocs=1
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
redirect_stderr=true
[program:worker]
command=bundle exec sidekiq
process_name=%(program_name)s_%(process_num)02d
numprocs=1
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
redirect_stderr=true
[program:agent]
command=app_perf_agent --license-key e47a7331-77cd-4ea0-8be1-b4130255a3a8
process_name=%(program_name)s_%(process_num)02d
numprocs=1
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
redirect_stderr=true