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

13 lines
273 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
services.nginx.virtualHosts."zond.tei.su" = {
forceSSL = true;
useACMEHost = "tei.su";
locations."/" = {
proxyPass = "http://umami.umami.docker:3000/";
};
};
}