概要
通过子域名访问proxmox管理页面
配置
caddy
xxx.example.com {
reverse_proxy ip_of_proxmox:port_of_proxmox {
transport http {
tls_insecure_skip_verify
}
}
}
注意要加tls_insecure_skip_verify,否则会报ERR_TOO_MANY_REDIRECTS
配合xray内网穿透的话,地址和端口填任意门监听的地址和端口
参考
https://forum.proxmox.com/threads/proxmox-ui-caddy-and-reverse-proxy.83198
