stockholm/makefu/2configs/nginx/misa-felix-hochzeit.ml.nix

17 lines
326 B
Nix
Raw Normal View History

2018-04-04 12:39:03 +00:00
{ config, lib, pkgs, ... }:
{
services.nginx = {
enable = lib.mkDefault true;
virtualHosts."misa-felix.ml" = {
2021-10-01 16:52:31 +00:00
#forceSSL = true;
#enableACME = true;
2018-04-04 12:39:03 +00:00
locations = {
"/" = {
index = "index.html";
root = "/var/www/misa-felix-hochzeit.ml";
};
};
};
};
}