Here is my scenario, I have a bunch of proxmox clusters, and I would like to expose their management interface via cloudflared tunnels + access applications. What I am unsure about is how to do this in a repeatable way. What I would LIKE to happen is below.
Public domain: mydomain.com
subdomain: pve.mydomain.com
internal hosts: pve(1|2|3).internal.corp
I would run a cloudflared remote-managed tunnel on each host (hosts are debian underneath) with the origin being https://localhost:8006
and ignore self-signed certs.
I can easily do each one as it’s own subdomain, but that is a lot of separate subdomains to track. I would much rather do it with paths.
Any suggestions?
P.S. here is a diagram of what I am trying to do.
graph LR
root[mydomain.com] -->|cloudflare dns| pve(pve.mydomain.com)
pve -->|pve1-origin= https://localhost:8006| pve1[pve.mydomain.com/pve1]
pve -->|pve2-origin= https://localhost:8006| pve2[pve.mydomain.com/pve2]
pve -->|pve3-origin= https://localhost:8006| pve3[pve.mydomain.com/pve3]