24 lines
598 B
Plaintext
24 lines
598 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
pidfile = /tmp/supervisord.pid
|
|
logfile = /tmp/supervisord.log
|
|
|
|
[unix_http_server]
|
|
file=/var/run/supervisor.sock ; (the path to the socket file)
|
|
chmod=0700 ; sockef file mode (default 0700)
|
|
|
|
[supervisorctl]
|
|
serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket
|
|
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[program:php-fpm]
|
|
command=/usr/sbin/php-fpm7.4
|
|
autostart = true
|
|
autorestart = false
|
|
stopasgroup=true
|
|
|
|
[include]
|
|
files = /etc/supervisor/conf.d/*.conf
|