Files
ladill-hosting/config/pdns.php
T
isaaccladandCursor bc199ccb43
Deploy Ladill Hosting / deploy (push) Successful in 49s
Add PowerDNS config and DKIM/NS check tables required for zone provisioning.
Hosting had PDNS env vars but no config/pdns.php and was missing domain_dkim_keys, so linked domains never got authoritative zones.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-13 17:05:28 +00:00

14 lines
504 B
PHP

<?php
return [
'api_url' => env('PDNS_API_URL', 'http://127.0.0.1:8081'),
'api_key' => env('PDNS_API_KEY', ''),
'server' => env('PDNS_SERVER', 'localhost'),
'timeout' => (int) env('PDNS_TIMEOUT', 5),
'slave_masters' => array_filter(array_map('trim', explode(',', env('PDNS_SLAVE_MASTERS', '167.86.66.168')))),
'slave_api_url' => env('PDNS_SLAVE_API_URL', ''),
'slave_api_key' => env('PDNS_SLAVE_API_KEY', ''),
'slave_server' => env('PDNS_SLAVE_SERVER', 'localhost'),
];