14 lines
361 B
Desktop File
14 lines
361 B
Desktop File
[Unit]
|
|
Description=The PHP FastCGI Process Manager
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
PIDFile=/usr/local/php/var/run/php-fpm.pid
|
|
ExecStart=/usr/local/php/sbin/php-fpm --nodaemonize --fpm-config /usr/local/php/etc/php-fpm.conf
|
|
ExecReload=/bin/kill -USR2 $MAINPID
|
|
ExecStop=/bin/kill -s QUIT $MAINPID
|
|
PrivateTmp=false
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |