[unix_http_server]
file=/run/supervisord.sock
chmod=0700
[supervisord]
nodaemon=true
# logfile=/var/log/supervisor/supervisord.log
# childlogdir=/var/log/supervisor
[rpcinterface:supervisor]
supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///run/supervisord.sock
[program:server]
command = php /var/www/html/bin/server.php
user = root
autostart = true
autorestart = true
stdout_logfile=/proc/self/fd/1
stdout_logfile_maxbytes=0
stderr_logfile=/proc/self/fd/1
stderr_logfile_maxbytes=0
|