Compare commits

...

3 commits

Author SHA1 Message Date
1c4542e86f
traefik: add hass 2024-01-23 22:06:44 -05:00
69ef47f9a0
hass: update 2024-01-23 22:06:34 -05:00
db233d3856
blocky: update hass 2024-01-23 22:06:17 -05:00
3 changed files with 9 additions and 3 deletions

View file

@ -98,7 +98,7 @@
# infra
"truenas.internal.flake.sh" = "192.168.1.199";
"assistant.internal.flake.sh" = "192.168.1.189";
"hass.internal.flake.sh" = "192.168.1.98";
"dashboard.internal.flake.sh" = "192.168.1.98";
"udm.internal.flake.sh" = "192.168.1.1";
"pve.internal.flake.sh" = "192.168.1.37";

View file

@ -2,8 +2,8 @@ _: {
services.home-assistant.config = {
lovelace.mode = "yaml";
http = {
server_host = "192.168.1.98";
server_port = 8124;
server_host = "0.0.0.0";
server_port = 8123;
};
homeassistant = {
name = "Home";

View file

@ -40,6 +40,11 @@ _: {
entrypoints = ["web"];
service = "searxng";
};
hass = {
rule = "Host(`hass.internal.flake.sh`)";
entrypoints = ["web"];
service = "hass";
};
};
services = {
stash.loadBalancer.servers = [{url = "http://localhost:9999";}];
@ -48,6 +53,7 @@ _: {
jellyseerr.loadBalancer.servers = [{url = "http://localhost:5055";}];
wallos.loadBalancer.servers = [{url = "http://localhost:8282";}];
searxng.loadBalancer.servers = [{url = "http://localhost:8100";}];
hass.loadBalancer.servers = [{url = "http://localhost:8123";}];
};
};
};