stockholm/makefu/2configs/nginx/misa-felix-hochzeit.ml.nix
2021-10-01 18:52:31 +02:00

17 lines
326 B
Nix

{ config, lib, pkgs, ... }:
{
services.nginx = {
enable = lib.mkDefault true;
virtualHosts."misa-felix.ml" = {
#forceSSL = true;
#enableACME = true;
locations = {
"/" = {
index = "index.html";
root = "/var/www/misa-felix-hochzeit.ml";
};
};
};
};
}