vhost-stack/html/status.php

15 lines
213 B
PHP
Raw Normal View History

2021-04-21 10:34:21 -07:00
<?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);
}