ROCKPro64-Server/system/services/server/jellyfin/nginx/default.nix

12 lines
271 B
Nix
Raw Normal View History

2025-02-28 12:21:09 -05:00
{ config, lib, ... }:
{
services.nginx.virtualHosts."jelly.example.com" = lib.mkIf config.services.forgejo.enable {
2025-02-28 12:21:09 -05:00
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8096";
proxyWebsockets = true;
};
};
}