vhost-stack/html/status.php
Matthew Saunders Brown 70c589f908 make status.php verbose
2021-09-09 10:11:46 -07:00

17 lines
268 B
PHP

<?php
if ($db_link = mysqli_connect('localhost', 'nagios', '', '')) {
mysqli_close($db_link);
/* 200 OK */
http_response_code(200);
echo "200 OK\n";
} else {
/* 503 Service Unavailable */
http_response_code(503);
echo "503 Service Unavailable\n";
}