Personal-use NixOS configuration
0
fork

Configure Feed

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

Implement reverse proxy for Emby

encode42 e98eba32 1fbcc4ae

+10 -1
+10 -1
packages/server/media/emby.nix
··· 1 - { emby-flake, ... }: 1 + { 2 + hosts ? [ ], 3 + }: 4 + 5 + { flakeLib, emby-flake, ... }: 2 6 3 7 { 4 8 services.emby = { ··· 6 10 7 11 package = emby-flake.packages.x86_64-linux.default; 8 12 }; 13 + 14 + # Caddy reverse proxy configuration 15 + services.caddy.virtualHosts = flakeLib.mkProxies hosts '' 16 + reverse_proxy :8096 17 + ''; 9 18 }