mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-02-04 12:23:26 +01:00
Compare commits
2 Commits
automated/
...
cloudflare
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7f871e52f | ||
|
|
187b466ffe |
@@ -33,7 +33,11 @@
|
|||||||
},
|
},
|
||||||
"notes": [
|
"notes": [
|
||||||
{
|
{
|
||||||
"text": "With an option to configure cloudflared as a DNS-over-HTTPS (DoH) proxy",
|
"text": "After install, run: cloudflared tunnel login && cloudflared tunnel create <NAME>",
|
||||||
|
"type": "info"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Or create tunnel via Cloudflare Zero Trust Dashboard",
|
||||||
"type": "info"
|
"type": "info"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -23,41 +23,6 @@ setup_deb822_repo \
|
|||||||
$STD apt install -y cloudflared
|
$STD apt install -y cloudflared
|
||||||
msg_ok "Installed Cloudflared"
|
msg_ok "Installed Cloudflared"
|
||||||
|
|
||||||
read -r -p "${TAB3}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
|
|
||||||
msg_ok "Created Service"
|
|
||||||
fi
|
|
||||||
|
|
||||||
motd_ssh
|
motd_ssh
|
||||||
customize
|
customize
|
||||||
cleanup_lxc
|
cleanup_lxc
|
||||||
|
|||||||
Reference in New Issue
Block a user