17 lines
327 B
Plaintext
17 lines
327 B
Plaintext
[supervisord]
|
|
user=root
|
|
nodaemon=true
|
|
logfile=/dev/null
|
|
logfile_maxbytes=0
|
|
pidfile=/run/supervisord.pid
|
|
|
|
[program:shotgun]
|
|
directory=/app
|
|
user=www
|
|
command=shotgun -o0.0.0.0 -p1337 config.ru
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0 |