22 lines
469 B
Plaintext
22 lines
469 B
Plaintext
|
[supervisord]
|
||
|
nodaemon=true
|
||
|
|
||
|
[unix_http_server]
|
||
|
file=/var/run//supervisor.sock
|
||
|
chmod=0700
|
||
|
|
||
|
[rpcinterface:supervisor]
|
||
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
||
|
|
||
|
[supervisorctl]
|
||
|
serverurl=unix:///var/run//supervisor.sock
|
||
|
|
||
|
[program:etherpad]
|
||
|
directory=/opt/etherpad-lite/bin
|
||
|
command=/opt/etherpad-lite/bin/run.sh --root
|
||
|
user=root
|
||
|
autostart=true
|
||
|
autorestart=true
|
||
|
stdout_logfile=/dev/fd/1
|
||
|
stdout_logfile_maxbytes=0
|
||
|
redirect_stderr=true
|