omniflake/system/web-server/ksh-map.nix
2025-11-11 17:18:26 +01:00

10 lines
205 B
Nix

{ config, pkgs, ... }:
{
services.nginx.virtualHosts."karte.kein-schlussstrich-hessen.org" = {
forceSSL = true;
enableACME = true;
onlySSL = true;
root = "/var/www/ksh-map/dist";
};
}