You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
448 B
Plaintext
19 lines
448 B
Plaintext
5 years ago
|
# php7.3-fpm - The PHP FastCGI Process Manager
|
||
|
|
||
|
description "The PHP 7.3 FastCGI Process Manager"
|
||
|
author "Ondřej Surý <ondrej@debian.org>"
|
||
|
|
||
|
start on runlevel [2345]
|
||
|
stop on runlevel [016]
|
||
|
|
||
|
# you can uncomment this with recent upstart
|
||
|
# reload signal USR2
|
||
|
|
||
|
pre-start script
|
||
|
mkdir -p /run/php
|
||
|
chmod 0755 /run/php
|
||
|
chown www-data:www-data /run/php
|
||
|
end script
|
||
|
|
||
|
respawn
|
||
|
exec /usr/sbin/php-fpm7.3 --nodaemonize --fpm-config /etc/php/7.3/fpm/php-fpm.conf
|