From bb609dedd1673159f7b9e59784b72d9efa47e491 Mon Sep 17 00:00:00 2001 From: rosslh Date: Thu, 19 Feb 2026 16:42:04 -0800 Subject: [PATCH] fix(dns): replace Cloudflare defaults with CIRA Canadian Shield Replace hardcoded 1.1.1.1/1.0.0.1 (Cloudflare) DNS defaults with CIRA Canadian Shield (149.112.121.10, 149.112.122.10) to maintain Canadian data sovereignty for DNS resolution. --- config/constants.php | 2 +- .../migrations/2024_01_15_084609_add_custom_dns_server.php | 2 +- resources/views/livewire/settings/advanced.blade.php | 4 ++-- templates/compose/pterodactyl-with-wings.yaml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/constants.php b/config/constants.php index 291fa55a6..417079de1 100644 --- a/config/constants.php +++ b/config/constants.php @@ -3,7 +3,7 @@ return [ // MapleDeploy branding: registry pointed to Forgejo, auto-update disabled by default 'coolify' => [ - 'version' => '4.0.0-beta.463.8', + 'version' => '4.0.0-beta.463.9', 'helper_version' => '1.0.12', 'realtime_version' => '1.0.10', 'self_hosted' => env('SELF_HOSTED', true), diff --git a/database/migrations/2024_01_15_084609_add_custom_dns_server.php b/database/migrations/2024_01_15_084609_add_custom_dns_server.php index 24d288d02..bbc66b59c 100644 --- a/database/migrations/2024_01_15_084609_add_custom_dns_server.php +++ b/database/migrations/2024_01_15_084609_add_custom_dns_server.php @@ -13,7 +13,7 @@ public function up(): void { Schema::table('instance_settings', function (Blueprint $table) { $table->boolean('is_dns_validation_enabled')->default(true); - $table->string('custom_dns_servers')->nullable()->default('1.1.1.1'); + $table->string('custom_dns_servers')->nullable()->default('149.112.121.10,149.112.122.10'); }); } diff --git a/resources/views/livewire/settings/advanced.blade.php b/resources/views/livewire/settings/advanced.blade.php index 81f5b13c8..be2eb4aa6 100644 --- a/resources/views/livewire/settings/advanced.blade.php +++ b/resources/views/livewire/settings/advanced.blade.php @@ -34,8 +34,8 @@ class="flex flex-col h-full gap-8 sm:flex-row"> + helper="Custom DNS servers for domain validation. Comma-separated list (e.g., 149.112.121.10,149.112.122.10). Leave empty to use system defaults." + placeholder="149.112.121.10,149.112.122.10" />

API Settings