mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00

- use PrivateTmp, now available everwhere, for better security - add comment about how to customize the unit file
18 lines
518 B
SYSTEMD
18 lines
518 B
SYSTEMD
# It's not recommended to modify this file in-place, because it
|
|
# will be overwritten during upgrades. If you want to customize,
|
|
# the best way is to use the "systemctl edit" command.
|
|
|
|
[Unit]
|
|
Description=The PHP FastCGI Process Manager
|
|
After=syslog.target network.target
|
|
|
|
[Service]
|
|
Type=@php_fpm_systemd@
|
|
PIDFile=@localstatedir@/run/php-fpm.pid
|
|
ExecStart=@sbindir@/php-fpm --nodaemonize --fpm-config @sysconfdir@/php-fpm.conf
|
|
ExecReload=/bin/kill -USR2 $MAINPID
|
|
PrivateTmp=true
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|