diff --git a/modules/system/homelab/tunnels.nix b/modules/system/homelab/tunnels.nix index 93352d7..8cf0fb6 100644 --- a/modules/system/homelab/tunnels.nix +++ b/modules/system/homelab/tunnels.nix @@ -1,6 +1,6 @@ { pkgs, lib, homelab, ... }: let routes = { - "git.${homelab.domain}" = "http://localhost:3000"; + "git.${homelab.domain}" = "http://localhost:5080"; "auth.${homelab.domain}" = "http://localhost:1411"; "dash.${homelab.domain}" = "http://localhost:5070"; "media.${homelab.domain}" = "http://localhost:8096"; @@ -34,4 +34,4 @@ in { ${pkgs.cloudflared}/bin/cloudflared tunnel --origincert /mnt/data/cloudflared/cert.pem route dns ${homelab.cf-tunnel-id} ${domain} || true '') (builtins.attrNames routes); }; -} \ No newline at end of file +}