123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- [Unit]
- Description=The PHP FastCGI Process Manager
- After=network.target
- [Service]
- Type=@php_fpm_systemd@
- PIDFile=@EXPANDED_LOCALSTATEDIR@/run/php-fpm.pid
- ExecStart=@EXPANDED_SBINDIR@/php-fpm --nodaemonize --fpm-config @EXPANDED_SYSCONFDIR@/php-fpm.conf
- ExecReload=/bin/kill -USR2 $MAINPID
- PrivateTmp=true
- ProtectSystem=full
- PrivateDevices=true
- ProtectKernelModules=true
- ProtectKernelTunables=true
- ProtectControlGroups=true
- RestrictRealtime=true
- RestrictAddressFamilies=AF_INET AF_INET6 AF_NETLINK AF_UNIX
- RestrictNamespaces=true
- [Install]
- WantedBy=multi-user.target
|