-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsupervisord.conf
83 lines (77 loc) · 1.73 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[supervisord]
pidfile=/wayback/supervisord.pid
loglevel=info
logfile=/dev/stdout
logfile_maxbytes=0
nodaemon=true
nocleanup=false
silent=true
[program:dbus]
command=/usr/bin/dbus-daemon --session --nofork
priority=1
numprocs=1
autostart=true
autorestart=unexpected
startsecs=1
stderr_logfile=/dev/stderr
stdout_logfile=/dev/stdout
stderr_logfile_maxbytes=0
stdout_logfile_maxbytes=0
[program:wireproxy]
command=/bin/sh -c "set -o pipefail && /bin/sh /wireproxy.sh"
priority=1
numprocs=1
autostart=true
autorestart=unexpected
startsecs=3
startretries=2147483647
stderr_logfile=/dev/stderr
stdout_logfile=/dev/stdout
stderr_logfile_maxbytes=0
stdout_logfile_maxbytes=0
[program:wayback]
command=/bin/sh -c "sleep 5 && set -o pipefail && /bin/sh /entrypoint.sh"
priority=2
numprocs=1
autostart=true
autorestart=unexpected
startsecs=10
startretries=2147483647
stderr_logfile=/dev/stderr
stdout_logfile=/dev/stdout
stderr_logfile_maxbytes=0
stdout_logfile_maxbytes=0
[program:tor]
command=/usr/bin/tor -f /etc/tor/torrc --quiet --SocksPort 9050
priority=2
numprocs=1
autostart=true
autorestart=unexpected
startsecs=1
stderr_logfile=/dev/stderr
stdout_logfile=/dev/stdout
stderr_logfile_maxbytes=0
stdout_logfile_maxbytes=0
[program:chromium]
command=/bin/sh -c 'set -o pipefail && /bin/sh /browser.sh'
priority=2
numprocs=1
autostart=true
autorestart=unexpected
startsecs=1
stderr_logfile=/dev/stderr
stdout_logfile=/dev/stdout
stderr_logfile_maxbytes=0
stdout_logfile_maxbytes=0
[program:cleaner]
command=/bin/sh -c 'sleep 60 && set -o pipefail && /bin/sh /cleaner.sh'
priority=30
numprocs=1
autostart=true
autorestart=unexpected
startsecs=10
startretries=2147483647
stderr_logfile=/dev/stderr
stdout_logfile=/dev/stdout
stderr_logfile_maxbytes=0
stdout_logfile_maxbytes=0