forked from Python3WebSpider/ProxyPool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
supervisord.conf
40 lines (34 loc) · 877 Bytes
/
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
[unix_http_server]
file=/run/supervisor.sock
chmod=0700
[supervisord]
pidfile=/run/supervisord.pid
nodaemon=true
[supervisorctl]
serverurl=unix:///run/supervisor.sock
[rpcinterface:supervisor]
supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
[program:tester]
process_name=tester
command=python3 run.py --processor tester
directory=/app
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:getter]
process_name=getter
command=python3 run.py --processor getter
directory=/app
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:server]
process_name=server
command=python3 run.py --processor server
directory=/app
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0