nixfiles/hosts/koi/containers/zond/default.nix

14 lines
327 B
Nix
Raw Normal View History

2024-06-06 13:10:13 +03:00
{ ... }:
{
# todo - move this from an ad-hoc docker compose to a proper service
2024-08-03 09:36:05 +03:00
# todo 2: update UMAMI_HOST in teisu-env
2024-06-06 13:10:13 +03:00
services.nginx.virtualHosts."zond.tei.su" = {
forceSSL = true;
useACMEHost = "tei.su";
locations."/" = {
2024-08-03 22:33:50 +03:00
proxyPass = "http://umami.umami.docker:3000$request_uri";
2024-06-06 13:10:13 +03:00
};
};
}