infrastructure/hosts/hydrogen/services/nginx/laurent/resume.nix
2023-11-15 15:43:46 +01:00

23 lines
557 B
Nix

{ pkgs, ... }:
let
pages = pkgs.fetchgit {
url = "https://git.fainsin.bzh/Laurent/resume";
fetchLFS = true; # https://github.com/go-gitea/gitea/issues/4773
rev = "ae7d671cca11d6046197dcfd3e1d59a7a3752082"; # pages
sha256 = "sha256-rnWbT3AYjS6DwXlfoNPFGHZae7yvXoNHRWvHeWceG/M=";
};
in {
services.nginx.virtualHosts = {
"resume.laurent.fainsin.bzh" = {
enableACME = true;
forceSSL = true;
locations = {
"/" = {
root = "${pages}/";
index = "resume.pdf";
};
};
};
};
}