yuzuru: Add meme site

reuse
Simon Bruder 2024-01-06 00:05:00 +01:00
parent afea7afdbf
commit 8757ef7eb8
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 18 additions and 0 deletions

View File

@ -4,6 +4,8 @@
imports = [
./hardware-configuration.nix
../../modules
./services/static-sites.nix
];
sbruder = {

View File

@ -0,0 +1,16 @@
{
services.nginx.virtualHosts = {
"brennende.autos" = {
enableACME = true;
forceSSL = true;
locations."~ .*".return = "303 'https://iv.sbruder.xyz/watch?v=ojToYs6nCnk&t=1684'";
};
"www.brennende.autos" = {
enableACME = true;
forceSSL = true;
globalRedirect = "https://brennende.autos/";
};
};
}