Domain-Name-System
ERR_NAME_NOT_RESOLVED 但 DNS 似乎是有效的
我有一個帶有 Nginx 容器和 dns 配置的 Azure VM runnig docker,其中 CNAME 條目指向該 Azure VM。該網站在瀏覽器中不可用(在 Chrome 中為 ERR_NAME_NOT_RESOLVED)。Azure 網站本身可用。
工作網站:http ://test-plattform.westeurope.cloudapp.azure.com/
不工作的網站:http ://dev.flamplattform.ch
DNS 檢查器顯示有效的 CNAME 解析:https ://dnschecker.org/#CNAME/dev.flamplattform.ch
.nginx 配置
worker_processes auto; events { worker_connections 1024; } http { charset utf-8; sendfile on; tcp_nopush on; tcp_nodelay on; log_not_found off; types_hash_max_size 2048; include mime.types; default_type application/octet-stream; # some security headers here... server { listen 80; listen [::]:80; server_name dev.flamplattform.ch test-plattform.westeurope.cloudapp.azure.com; location / { proxy_pass http://app:80; proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $server_name; proxy_set_header X-Forwarded-Proto $scheme; proxy_cache_bypass $http_upgrade; } } }
您的 CNAME 記錄
www
有dev
明顯的拼寫錯誤。dev.flamplattform.ch. 3600 IN CNAME test-plattform.westeurope.cloudapp.azure.com/. www.flamplattform.ch. 3600 IN CNAME test-plattform.westeurope.cloudapp.azure.com/.
刪除
/
記錄末尾的錯誤。您的 DNS 提供商甚至不應該允許您創建這些記錄,但顯然他們不能很好地驗證輸入……