<?php
declare(strict_types=1);

header('Content-Type: application/json; charset=UTF-8');
header('X-Content-Type-Options: nosniff');
header('Cache-Control: no-store, no-cache, must-revalidate');

echo json_encode([
    'ok'        => true,
    'service'   => 'DopCars VPN Agent',
    'node_id'   => 'vpn3',
    'node_name' => 'Минск',
    'version'   => '1.0.0',
    'time'      => date(DATE_ATOM),
], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
