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

16 lines
374 B
Nix
Raw Normal View History

2023-03-22 22:27:36 +01:00
{ pkgs, ... }:
{
services.nginx.virtualHosts = {
"legal.clerie.de" = {
enableACME = true;
forceSSL = true;
root = pkgs.fetchgit {
url = "https://git.clerie.de/clerie/legal.clerie.de.git";
rev = "c6900226e3107a2e370a32759d83db472ab5450d";
sha256 = "sha256-lOjbHqYc/85rjotwQ5Oj+MSWnDIfLx2w5mpiJkChbXU=";
};
};
};
}