1
0

Compare commits

...

3 Commits

Author SHA1 Message Date
c86125095a Update from updated-inputs-2024-05-27-01-03 2024-05-27 03:04:09 +02:00
Flake Update Bot
6709c726f1 Update nixpkgs 2024-05-27-01-03 2024-05-27 03:04:07 +02:00
413c8cc52c
hosts/web-2: Add nogo2024.clerie.de 2024-05-26 20:41:09 +02:00
2 changed files with 21 additions and 0 deletions

View File

@ -19,6 +19,7 @@
./milchinsel.nix
./mitel-ommclient2.nix
./nix-install.nix
./nogo2024.nix
./ping.nix
./public.nix
./radicale.nix

20
hosts/web-2/nogo2024.nix Normal file
View File

@ -0,0 +1,20 @@
{ 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";
rev = "09f06098589e1cc37db4cda49841db192b562b1a";
sha256 = "sha256-4tYyIEpUwR94JzjYy7b1FYBzQooPpT3V0wAEreUQZS4=";
};
};
};
};
}