dns fuckery

This commit is contained in:
Rouven Seifert 2025-05-10 20:17:40 +02:00
parent 5f43998de8
commit f8eee37e51
12 changed files with 62 additions and 20 deletions

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ ... }:
let
domain = "media.vpn.rfive.de";
in
@ -6,7 +6,7 @@ in
services.jellyfin = {
enable = true;
};
services.caddy.virtualHosts."http://${domain}".extraConfig = ''
services.caddy.virtualHosts."${domain}".extraConfig = ''
reverse_proxy 127.0.0.1:8096
'';
}