vhost-stack/html/status.php
Matthew Saunders Brown 2b977515e4 add html/status.php
2021-04-21 10:34:21 -07:00

15 lines
213 B
PHP

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