added script to check and restart php if not responding

Cette révision appartient à :
Albirew 2024-07-31 01:11:36 +02:00
Parent e2e6dfce34
révision 7550ccf507
Signé par: Albirew
ID de la clé GPG: 9D72DAEB1BB933C9

Voir le fichier

@ -0,0 +1,7 @@
#!/usr/bin/env bash
phpver=8.3
timeout 30 sudo -u www-data cgi-fcgi -bind -connect /var/run/php/php${phpver}-fpm.sock >/dev/null 2>&1
if [ $? -ne 0 ]
then
/usr/sbin/service php${phpver}-fpm restart
fi