nixos: services: blog: fix catch-all redirection
Some checks failed
ci/woodpecker/push/check Pipeline failed

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

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";
};
};