❄️ Nix configurations
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add media reverseproxy

A.Ottr 882a399a b36ec820

+11
+5
nixos/ferret/caddy.nix
··· 1 1 { pkgs, ... }: 2 2 3 3 { 4 + networking.firewall.allowedTCPPorts = [ 5 + 80 6 + 443 7 + ]; 8 + 4 9 services.caddy = { 5 10 enable = true; 6 11 virtualHosts."localhost".extraConfig = ''
+6
nixos/ferret/media.nix
··· 29 29 group = "media"; 30 30 }; 31 31 32 + services.caddy = { 33 + virtualHosts."jellyfin.otterden.local".extraConfig = '' 34 + reverse_proxy http://localhost:8096 35 + ''; 36 + }; 37 + 32 38 services.radarr = { 33 39 enable = true; 34 40 openFirewall = true;