2019-12-03 21:00:08 +01:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
|
|
export SCRIPT_NAME=/ping
|
|
|
|
export SCRIPT_FILENAME=/ping
|
|
|
|
export REQUEST_METHOD=GET
|
|
|
|
|
2021-02-09 10:42:17 +01:00
|
|
|
if cgi-fcgi -bind -connect /var/run/php/php-fpm.sock; then
|
2019-12-03 21:00:08 +01:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 1
|