From 6f6dd2a981f9f9dceafa0514489b43705460f07f Mon Sep 17 00:00:00 2001 From: Jeff Near Date: Mon, 20 Apr 2026 14:02:46 +0000 Subject: [PATCH] Adding proxmox and homeassistant --- custom/homeassistant_conf.yml | 16 ++++++++++++++++ custom/proxmox_conf.yml | 21 +++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 custom/homeassistant_conf.yml create mode 100644 custom/proxmox_conf.yml diff --git a/custom/homeassistant_conf.yml b/custom/homeassistant_conf.yml new file mode 100644 index 0000000..3bf8f1c --- /dev/null +++ b/custom/homeassistant_conf.yml @@ -0,0 +1,16 @@ +http: + # Router for Home Assistant + routers: + homeassistant: + entryPoints: + - web + service: homeassistant + rule: Host(`homeassistant.nearfuture`) + + # Add the service for Home Assistant + services: + homeassistant: + loadBalancer: + servers: + - url: http://192.168.1.195:8123 + diff --git a/custom/proxmox_conf.yml b/custom/proxmox_conf.yml new file mode 100644 index 0000000..f917742 --- /dev/null +++ b/custom/proxmox_conf.yml @@ -0,0 +1,21 @@ +http: + # Router for Proxmox + routers: + pve: + entryPoints: + - websecure + service: pve + rule: Host(`pve.nearfuture`) + + # Add the service for Proxmox + services: + pve: + loadBalancer: + passHostHeader: true + serversTransport: "pve" + servers: + - url: https://192.168.1.191:8006 + serversTransports: + pve: + insecureSkipVerify: true + -- 2.49.0