feat: redirect julienmalka.me->luj.fr

This commit is contained in:
Luj 2025-01-18 01:02:33 +01:00
parent 718128596f
commit 3e615b11a3
Signed by: luj
GPG key ID: 6FC74C847011FD83
2 changed files with 5 additions and 12 deletions

View file

@ -1,6 +1,5 @@
{
lib,
inputs,
config,
...
}:
@ -18,7 +17,11 @@ in
services.nginx.virtualHosts."julienmalka.me" = {
enableACME = true;
forceSSL = true;
root = inputs.homepage;
locations."/" = {
extraConfig = ''
return 301 https://luj.fr$request_uri;
'';
};
};
};
}