mirror of https://github.com/TildeNIC/site.git
parent
f02aa26358
commit
ce30cee389
|
@ -13,13 +13,15 @@ if (isset($_GET['action']) && $_GET['action'] == 'logout') {
|
||||||
function getDnsServersInfo() {
|
function getDnsServersInfo() {
|
||||||
$masterFile = '../dottilde/db.master.tilde';
|
$masterFile = '../dottilde/db.master.tilde';
|
||||||
$servers = [];
|
$servers = [];
|
||||||
$nsFilter = ['ns1', 'ns2']; // Add more nameserver identifiers as needed
|
$nsFilter = ['ns1', 'ns2', 'ns3', 'ns4']; // Add more nameserver identifiers as needed
|
||||||
|
|
||||||
// Manually assigned geographical areas for each nameserver
|
// Manually assigned geographical areas for each nameserver
|
||||||
$nsGeographicalAreas = [
|
$nsGeographicalAreas = [
|
||||||
'ns1' => 'Quebec, Canada', // Replace with actual locations
|
'ns1' => 'Quebec, Canada', // Replace with actual locations
|
||||||
'ns2' => 'Frankfurt, Germany',
|
'ns2' => 'Frankfurt, Germany',
|
||||||
// Add more as needed
|
'ns3' => 'Virginia, US',
|
||||||
|
'ns4' => 'Oregon, US',
|
||||||
|
// Add more as needed
|
||||||
];
|
];
|
||||||
|
|
||||||
if (file_exists($masterFile)) {
|
if (file_exists($masterFile)) {
|
||||||
|
|
Loading…
Reference in New Issue