15 lines
292 B
SYSTEMD
15 lines
292 B
SYSTEMD
|
[Unit]
|
||
|
Description=The PHP FastCGI Process Manager
|
||
|
After=syslog.target network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
PIDFile=/var/run/php-fpm/php-fpm.pid
|
||
|
ExecStart=/usr/sbin/php-fpm
|
||
|
ExecReload=/bin/kill -USR2 $MAINPID
|
||
|
ExecStop=/usr/sbin/httpd $OPTIONS -k stop
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|
||
|
|