nixos: services: blog: fix catch-all redirection
All checks were successful
ci/woodpecker/push/check Pipeline was successful

Don't use a hard-coded address...
This commit is contained in:
Bruno BELANYI 2024-03-05 21:45:18 +00:00
parent 077d0f021b
commit ea8e1e30ea

View file

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