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