os/hosts/frikandel/website.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
931 B
Nix
Raw Normal View History

2023-11-12 20:45:02 +00:00
{
pkgs,
lib,
...
}: let
bbeu = pkgs.stdenv.mkDerivation {
name = "benjaminbaedorf.eu";
2023-11-12 23:19:53 +00:00
src = pkgs.fetchgit {
2023-11-12 20:45:02 +00:00
url = "https://git.pub.solar/b12f/benjaminbaedorf.eu.git";
sparseCheckout = [
"fonts"
"cows.jpg"
"fonts.css"
"index.html"
"public-pgp-benjamin-baedorf.asc"
];
2023-11-12 23:19:53 +00:00
hash = "sha256-c5nU9zqrHgD+dCXdXXcS9xJIaGueyXQpuwSqv0aSLM0=";
2023-11-12 20:45:02 +00:00
};
2023-11-12 23:19:53 +00:00
installPhase = ''
mkdir -p $out
cp -r * $out/
'';
2023-11-12 20:45:02 +00:00
};
in {
services.caddy.virtualHosts = {
"benjaminbaedorf.eu" = {
extraConfig = ''
redir https://b12f.io{uri} temporary
'';
};
"b12f.io" = {
extraConfig = ''
handle {
root * ${bbeu}
try_files {path}.html {path}
file_server
}
handle_errors {
respond "{http.error.status_code} {http.error.status_text}"
}
'';
};
};
}