infra/config/services/website/default.nix

10 lines
166 B
Nix
Raw Normal View History

{
services.nginx.virtualHosts."winston.sh" = {
forceSSL = true;
enableACME = false;
useACMEHost = "winston.sh";
locations."/".root = ./www;
};
}