Update main.php

added servers hosted by Anton.
This commit is contained in:
deepend-tildeclub 2025-02-13 20:10:26 -07:00 committed by GitHub
parent f02aa26358
commit ce30cee389
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -13,13 +13,15 @@ if (isset($_GET['action']) && $_GET['action'] == 'logout') {
function getDnsServersInfo() {
$masterFile = '../dottilde/db.master.tilde';
$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
$nsGeographicalAreas = [
'ns1' => 'Quebec, Canada', // Replace with actual locations
'ns2' => 'Frankfurt, Germany',
// Add more as needed
'ns3' => 'Virginia, US',
'ns4' => 'Oregon, US',
// Add more as needed
];
if (file_exists($masterFile)) {