os/hosts/frikandel/website.nix

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

49 lines
989 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 {
security.acme.certs = {
"benjaminbaedorf.eu" = {};
"b12f.io" = {};
};
services.nginx.virtualHosts = {
2023-11-12 20:45:02 +00:00
"benjaminbaedorf.eu" = {
forceSSL = true;
useACMEHost = "benjaminbaedorf.eu";
locations."/".return = "302 https://b12f.io$request_uri";
2023-11-12 20:45:02 +00:00
};
"b12f.io" = {
forceSSL = true;
useACMEHost = "b12f.io";
2023-11-12 20:45:02 +00:00
locations."/" = {
root = bbeu;
index = "index.html";
tryFiles = "$uri $uri/ =404";
};
2023-11-12 20:45:02 +00:00
};
};
}