feat: allow having nice links without .html
This commit is contained in:
parent
692ed8e3f0
commit
2d95094fbd
1 changed files with 9 additions and 0 deletions
|
@ -41,6 +41,15 @@ in {
|
|||
forceSSL = true;
|
||||
useACMEHost = "skynet";
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue