modules: services: blog: use 302 redirection
All checks were successful
ci/woodpecker/push/check Pipeline was successful

That way the browser doesn't cache it, in case I do end up using that
domain after all.
This commit is contained in:
Bruno BELANYI 2023-05-07 15:20:12 +01:00
parent b86d963a92
commit 574634b64e

View file

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