1
0
nixfiles/hosts/web-2/nogo2024.nix

21 lines
484 B
Nix
Raw Permalink Normal View History

2024-05-26 20:41:09 +02:00
{ pkgs, ... }:
{
services.nginx.virtualHosts = {
"nogo2024.clerie.de" = {
enableACME = true;
forceSSL = true;
locations."/" = {
return = "404";
};
locations."= /nogo2024.ics" = {
root = pkgs.fetchgit {
url = "https://git.clerie.de/clerie/nogo2024.git";
2024-07-01 21:35:04 +02:00
rev = "fdc07667e6cfa09e91eaaee488528fb842a6115d";
sha256 = "sha256-qRviw0sQnMmrkwBO0+AWnmeqZK8wXeFxZJgmLMUtzn4=";
2024-05-26 20:41:09 +02:00
};
};
};
};
}