11 lines
300 B
Bash
11 lines
300 B
Bash
#!/usr/bin/env bash
|
|
# author: licess
|
|
# website: https://lnmp.org
|
|
|
|
CheckURL="http://www.xxx.com"
|
|
|
|
STATUS_CODE=`curl -o /dev/null -m 10 --connect-timeout 10 -s -w %{http_code} $CheckURL`
|
|
#echo "$CheckURL Status Code:\t$STATUS_CODE"
|
|
if [ "$STATUS_CODE" = "502" ]; then
|
|
/etc/init.d/php-fpm restart
|
|
fi |