lab-infra/machines/labcore01/nginx.nix
sinavir 930c1bd90a
All checks were successful
lint / check (push) Successful in 24s
build configuration / build_krz01 (push) Successful in 2m6s
feat(sni-proxy): init
2024-12-22 02:49:09 +01:00

8 lines
151 B
Nix

{
dgn-web.enable = true;
services.nginx.virtualHosts."kfet.lab.dgnum.eu" = {
enableACME = true;
forceSSL = true;
root = ./kfet;
};
}