7 lines
142 B
PHP
7 lines
142 B
PHP
<?php
|
|
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
echo json_encode([
|
|
'Status' => 'OK',
|
|
'Hostname' => gethostname(),
|
|
]);
|