From 74ca5c8fbd3a777ecd6bf8e1599766393edc0364 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Thu, 20 Apr 2023 16:34:40 +0200 Subject: [PATCH] mediaserver: wip tubearchivist --- container/tubearchivist/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/container/tubearchivist/default.nix b/container/tubearchivist/default.nix index 3045468..5e570fd 100644 --- a/container/tubearchivist/default.nix +++ b/container/tubearchivist/default.nix @@ -46,4 +46,17 @@ systemd.services.podman-archivist-es.serviceConfig = { TimeoutStopSec = lib.mkForce 30; }; + + services.nginx.virtualHosts."tubearchivist.internal.kempkens.network" = { + quic = true; + http3 = true; + + onlySSL = true; + useACMEHost = "internal.kempkens.network"; + + locations."/" = { + recommendedProxySettings = true; + proxyPass = "http://127.0.0.1:9887"; + }; + }; }