summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/nginx/misa-felix-hochzeit.ml.nix
blob: 752612342ec37ec2ce9f0d1fdd514742c9f6f701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, pkgs, ... }:
{
  services.nginx = {
    enable = lib.mkDefault true;
    virtualHosts."misa-felix-hochzeit.ml" = {
      serverAliases = [ "misa-felix.ml" "www.misa-felix.ml" ];
      forceSSL = true;
      enableACME = true;
      locations = {
        "/" = {
          index = "index.html";
          root =  "/var/www/misa-felix-hochzeit.ml";
        };
      };
    };
  };
}