feat: allow having nice links without .html

This commit is contained in:
silver 2024-08-13 00:09:32 +01:00
parent 692ed8e3f0
commit 2d95094fbd
Signed by: silver
GPG key ID: 0A1071E702CE4B4E

View file

@ -41,6 +41,15 @@ in {
forceSSL = true; forceSSL = true;
useACMEHost = "skynet"; useACMEHost = "skynet";
root = "${inputs.skynet_website_renew.defaultPackage."x86_64-linux"}/wiki"; root = "${inputs.skynet_website_renew.defaultPackage."x86_64-linux"}/wiki";
# https://stackoverflow.com/a/38238001/11964934
extraConfig = ''
location / {
if ($request_uri ~ ^/(.*)\.html) {
return 302 /$1;
}
try_files $uri $uri.html $uri/ =404;
}
'';
}; };
# redirect old links to the new wiki # redirect old links to the new wiki