fix(homelab): fix homeassistant route to 8080

This commit is contained in:
2026-01-01 22:21:37 -08:00
parent 120e38fd46
commit 8fa31858b4
3 changed files with 2 additions and 8 deletions

View File

@@ -19,7 +19,7 @@ routes = [
{ {
name = "home-assistant", name = "home-assistant",
namespace = "home", namespace = "home",
port = 8123, port = 8080,
private = true private = true
}, },
{ {

View File

@@ -42,7 +42,7 @@ spec:
rules: rules:
- backendRefs: - backendRefs:
- name: home-assistant - name: home-assistant
port: 8123 port: 8080
filters: filters:
- type: ExtensionRef - type: ExtensionRef
extensionRef: extensionRef:

View File

@@ -20,12 +20,6 @@
networking.hostName = meta.hostname; networking.hostName = meta.hostname;
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.firewall.extraCommands = ''
iptables -I INPUT -d 192.168.27.10/32 -s 10.0.0.0/8 -j ACCEPT
iptables -I INPUT -d 192.168.27.10/32 -s 172.16.0.0/12 -j ACCEPT
iptables -I INPUT -d 192.168.27.10/32 -s 192.168.0.0/16 -j ACCEPT
iptables -I INPUT -d 192.168.27.10/32 -j DROP
'';
time.timeZone = "America/Vancouver"; time.timeZone = "America/Vancouver";