nixos: services: blog: fix catch-all redirection

Don't use a hard-coded address...
This commit is contained in:
Bruno BELANYI 2024-03-05 21:45:18 +00:00
parent 84fea2f677
commit a4e742bf55
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ in
useACMEHost = domain;
default = true;
locations."/".return = "302 https://belanyi.fr$request_uri";
locations."/".return = "302 https://${domain}$request_uri";
};
};