1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(home-assistant): run on home.kmein.r

This commit is contained in:
2022-03-13 17:24:59 +01:00
parent 2565bfbc27
commit 9c68ff20bc
2 changed files with 13 additions and 5 deletions

View File

@@ -1,5 +1,13 @@
{
networking.firewall.allowedTCPPorts = [8123];
let
port = 8123;
in {
networking.firewall.allowedTCPPorts = [port];
services.nginx.virtualHosts."home.kmein.r" = {
locations."/" = {
proxyPass = "http://127.0.0.1:${toString port}";
};
};
virtualisation.oci-containers = {
backend = "podman";