22 lines
532 B
Plaintext
22 lines
532 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
|
|
[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/bin/php-fpm
|
|
autostart = true
|
|
autorestart = false
|
|
stopasgroup=true
|
|
|
|
[include]
|
|
files = /etc/supervisor/conf.d/*.conf
|