blob: f787c1021c7682fa489afdbc78325396a8a1832f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[supervisord]
nodaemon=true
[program:uwsgi_internal]
command = /usr/bin/uwsgi --ini /etc/uwsgi/uwsgi.ini --plugin python3
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[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
|