nixos-config/modules/system/services/server/fileserver/jellyfin/nginx/default.nix

12 lines
280 B
Nix
Raw Normal View History

2025-01-16 00:41:00 -05:00
{ lib, config, ... }:
{
services.nginx.virtualHosts."jelly.${config.domains.p2}" = lib.mkIf config.services.forgejo.enable {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8096";
proxyWebsockets = true;
};
};
}