forked from TheWrightServer/ProxmoxVE
Update cloudflared-install.sh (#264)
Added the option to configure cloudflared as a DNS-over-HTTPS (DoH) proxy
This commit is contained in:
parent
a29ed78ae3
commit
f6cc26af3a
@ -28,6 +28,41 @@ $STD apt-get update
|
|||||||
$STD apt-get install -y cloudflared
|
$STD apt-get install -y cloudflared
|
||||||
msg_ok "Installed Cloudflared"
|
msg_ok "Installed Cloudflared"
|
||||||
|
|
||||||
|
read -r -p "Would you like to configure cloudflared as a DNS-over-HTTPS (DoH) proxy? <y/N> " prompt
|
||||||
|
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
|
||||||
|
msg_info "Creating Service"
|
||||||
|
cat <<EOF >/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 <<EOF >/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.service
|
||||||
|
msg_ok "Created Service"
|
||||||
|
fi
|
||||||
|
|
||||||
motd_ssh
|
motd_ssh
|
||||||
customize
|
customize
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
"updateable": false,
|
"updateable": false,
|
||||||
"privileged": false,
|
"privileged": false,
|
||||||
"interface_port": null,
|
"interface_port": null,
|
||||||
"documentation": null,
|
"documentation": "https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/",
|
||||||
"website": "https://www.cloudflare.com/",
|
"website": "https://www.cloudflare.com/",
|
||||||
"logo": "https://raw.githubusercontent.com/loganmarchione/homelab-svg-assets/main/assets/cloudflare.svg",
|
"logo": "https://raw.githubusercontent.com/loganmarchione/homelab-svg-assets/main/assets/cloudflare.svg",
|
||||||
"description": "Cloudflared is a command-line tool that allows you to securely access resources on the Cloudflare network, such as websites and APIs, from your local computer. It works by creating a secure tunnel between your computer and the Cloudflare network, allowing you to access resources as if they were on your local network.",
|
"description": "Cloudflared is a command-line tool that allows you to securely access resources on the Cloudflare network, such as websites and APIs, from your local computer. It works by creating a secure tunnel between your computer and the Cloudflare network, allowing you to access resources as if they were on your local network.",
|
||||||
@ -30,5 +30,10 @@
|
|||||||
"username": null,
|
"username": null,
|
||||||
"password": null
|
"password": null
|
||||||
},
|
},
|
||||||
"notes": []
|
"notes": [
|
||||||
}
|
{
|
||||||
|
"text": "With an option to configure cloudflared as a DNS-over-HTTPS (DoH) proxy"
|
||||||
|
"type": "info"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user