-
Notifications
You must be signed in to change notification settings - Fork 1
/
supervisord.conf
53 lines (47 loc) · 1.29 KB
/
supervisord.conf
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[supervisord]
nodaemon=true
logfile=/var/log/supervisor/supervisord.log
[program:htcondor]
command=/usr/sbin/condor_master -f -t
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:vc3-infoservice]
command=/usr/bin/vc3-infoservice
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
user=vc3
autorestart=true
[program:vc3-master]
command=/usr/bin/vc3-master -d
stdout_logfile=/dev/stdout
tdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
user=vc3
autorestart=true
[program:autopyfactory]
command=/usr/bin/autopyfactory --conf /etc/autopyfactory/autopyfactory.conf --log=/var/log/autopyfactory/autopyfactory.log --sleep=60 --runas=autopyfactory
stdout_logfile=/dev/stdout
tdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
user=autopyfactory
autorestart=true
[program:uwsgi]
command=/usr/sbin/uwsgi --ini /etc/uwsgi.d/vc3.ini --die-on-term
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true
[program:nginx]
command=/usr/sbin/nginx -g "daemon off;"
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true