update homepage
Some checks failed
/ lint (push) Successful in 13s
/ build (push) Failing after 3h13m32s

This commit is contained in:
Jana Dönszelmann 2025-10-28 20:14:57 +01:00
parent a60d56425c
commit 0c044cc4ea
No known key found for this signature in database
3 changed files with 22 additions and 9 deletions

View file

@ -7,16 +7,23 @@
enableACME = true;
locations."/" = {
root = "${flakes.homepage.packages.${pkgs.system}.website}/normal";
root = "${flakes.homepage.packages.${pkgs.system}.website}";
};
};
virtualHosts."blog.donsz.nl" = {
forceSSL = true;
http2 = true;
enableACME = true;
locations."/".return = "301 https://donsz.nl/blog";
};
virtualHosts."gay.donsz.nl" = {
forceSSL = true;
http2 = true;
enableACME = true;
locations."/" = {
root = "${flakes.homepage.packages.${pkgs.system}.website}/gay";
root = "${flakes.homepage.packages.${pkgs.system}.website-gay}";
};
};
virtualHosts."jdonszelmann.nl" = {
@ -25,7 +32,7 @@
enableACME = true;
locations."/" = {
root = "${flakes.homepage.packages.${pkgs.system}.website}/normal";
root = "${flakes.homepage.packages.${pkgs.system}.website}";
};
};
};