Identify mount point e.g. via /etc/fstab Find systemd unit (see below) Add the found mount-unit to the After= statement in the *.service file (see below) systemctl list-units | grep ‘/path/to/mount’ | awk ‘{ print $1 }’ path-to-mount.mount vi /etc/systemd/system/php-fpm.service [Unit] Description=The PHP FastCGI Process Manager After=syslog.target network.target path-to-m..
Category : PHP-FPM
Dynamic v On-demand Good write up here. I’d use on-demand for low priority and/or low traffic sites, especially if you’re running a mix of sites on the same box. On-demand: As mentioned: pm = ondemand pm.max_children = 5 pm.process_idle_timeout = 10s pm.max_requests = 200 Set pm.max_children pretty low for your low priority sites, if it’s ..