modules: services: blog: better blog redirection

This commit is contained in:
Bruno BELANYI 2023-03-31 21:53:11 +00:00
parent 9c36d65d80
commit 5d9524dbdf
1 changed files with 9 additions and 1 deletions

View File

@ -23,13 +23,21 @@ in
forceSSL = true;
useACMEHost = domain;
root = "/var/www/blog";
default = true; # Redirect to my blog
# http://www.gnuterrypratchett.com/
extraConfig = ''
add_header X-Clacks-Overhead "GNU Terry Pratchett";
'';
};
# Dummy vhost to redirect all unknown (sub-)domains to my blog
"_" = {
forceSSL = true;
useACMEHost = domain;
default = true;
locations."/".return = "301 https://belanyi.fr$request_uri";
};
};
# Those are all subdomains, no problem