mirror of
https://git.dn42.dev/lare/myip.dn42.git
synced 2024-10-24 03:11:33 +02:00
19 lines
299 B
PHP
19 lines
299 B
PHP
|
<?php
|
||
|
|
||
|
include 'config.php';
|
||
|
|
||
|
$api_version = '1.0';
|
||
|
|
||
|
header('Content-Type: application/json');
|
||
|
|
||
|
$res = array(
|
||
|
'version' => $api_version,
|
||
|
'ip' => $_SERVER['REMOTE_ADDR'],
|
||
|
'node_id' => $node_id,
|
||
|
'node_location' => $node_location,
|
||
|
'node_asn' => $node_asn
|
||
|
);
|
||
|
|
||
|
echo json_encode($res);
|
||
|
?>
|