servnest/pg-act/ns/cname.php

17 lines
283 B
PHP
Raw Permalink Normal View History

2023-07-17 19:15:18 +00:00
<?php declare(strict_types=1);
$values = nsParseCommonRequirements();
$_POST['cname'] = formatAbsoluteDomain($_POST['cname']);
2023-04-28 13:39:05 +00:00
rateLimit();
knotcZoneExec($_POST['zone'], [
$values['domain'],
$values['ttl'],
'CNAME',
$_POST['cname']
]);
output(200, _('Modification done.'));