1
0
Fork 0

hosts/web-2: add tap.clerie.de

This commit is contained in:
clerie 2022-11-08 17:04:03 +01:00
parent aef18ccde7
commit df4e162a9b
2 changed files with 16 additions and 0 deletions

View File

@ -18,6 +18,7 @@
./public.nix
./radicale.nix
./reichartstrasse.nix
./tap.nix
./uptimestatus.nix
./wetter.nix
./znc.nix

15
hosts/web-2/tap.nix Normal file
View File

@ -0,0 +1,15 @@
{ pkgs, ... }:
{
services.nginx.virtualHosts = {
"tap.clerie.de" = {
enableACME = true;
forceSSL = true;
root = pkgs.fetchgit {
url = "https://git.clerie.de/clerie/tap.clerie.de.git";
rev = "a90df6f6cb6dc58ab807b230527aae76c48cdcc8";
sha256 = "sha256-GTUy98NHXvR7pG8lUWZm6wa0XjULnDTSu17C/DQuXBI=";
};
};
};
}