mirror of
https://github.com/fernwerker/ownDynDNS.git
synced 2025-07-10 14:15:14 +02:00
20 lines
523 B
PHP
Executable file
20 lines
523 B
PHP
Executable file
<?php
|
|
|
|
error_reporting(-1);
|
|
ini_set('display_errors', 1);
|
|
ini_set('html_errors', 0);
|
|
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
|
|
require_once __DIR__ . '/../src/Soap.php';
|
|
require_once __DIR__ . '/../src/Config.php';
|
|
require_once __DIR__ . '/../src/Payload.php';
|
|
require_once __DIR__ . '/../src/Handler.php';
|
|
|
|
if (!file_exists('.env')) {
|
|
throw new RuntimeException('.env file missing');
|
|
}
|
|
|
|
$config = parse_ini_file('.env', false, INI_SCANNER_TYPED);
|
|
|
|
(new netcup\DNS\API\Handler($config, $_REQUEST))->doRun();
|