From 94b9190e073ff69ee07801841fd6538d94b1de48 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 29 Jan 2026 17:15:10 +0100 Subject: [PATCH] cloudflare: Remove deprecated DNS-over-HTTPS proxy option (#11068) * Remove deprecated DNS-over-HTTPS proxy option from cloudflared installer * docs(cloudflared): update notes - remove deprecated DoH proxy info - DoH proxy-dns feature deprecated by Cloudflare (Feb 2026) - Add tunnel setup instructions instead --- install/cloudflared-install.sh | 35 ---------------------------------- 1 file changed, 35 deletions(-) diff --git a/install/cloudflared-install.sh b/install/cloudflared-install.sh index 6cab632cd..51396633b 100644 --- a/install/cloudflared-install.sh +++ b/install/cloudflared-install.sh @@ -23,41 +23,6 @@ setup_deb822_repo \ $STD apt install -y cloudflared msg_ok "Installed Cloudflared" -read -r -p "${TAB3}Would you like to configure cloudflared as a DNS-over-HTTPS (DoH) proxy? " prompt -if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then - msg_info "Creating Service" - cat </usr/local/etc/cloudflared/config.yml -proxy-dns: true -proxy-dns-address: 0.0.0.0 -proxy-dns-port: 53 -proxy-dns-max-upstream-conns: 5 -proxy-dns-upstream: - - https://1.1.1.1/dns-query - - https://1.0.0.1/dns-query - #- https://8.8.8.8/dns-query - #- https://8.8.4.4/dns-query - #- https://9.9.9.9/dns-query - #- https://149.112.112.112/dns-query -EOF - cat </etc/systemd/system/cloudflared.service -[Unit] -Description=cloudflared DNS-over-HTTPS (DoH) proxy -After=syslog.target network-online.target - -[Service] -Type=simple -ExecStart=/usr/local/bin/cloudflared --config /usr/local/etc/cloudflared/config.yml -Restart=on-failure -RestartSec=10 -KillMode=process - -[Install] -WantedBy=multi-user.target -EOF - systemctl enable -q --now cloudflared - msg_ok "Created Service" -fi - motd_ssh customize cleanup_lxc