summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/nginx/misa-felix-hochzeit.ml.nix
blob: d54deeea2c4b4c01b1fa13b5672f142594e03c66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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";
        };
      };
    };
  };
}