website/docs: start troubleshooting page for forward auth

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2022-06-21 22:26:17 +02:00
parent 29b0eae43f
commit 6a4efaecb0
3 changed files with 78 additions and 2 deletions

View File

@ -48,14 +48,16 @@ module.exports = {
},
{
type: "dropdown",
label: `Version ${latestVersion}`,
label: `Version: latest`,
position: "right",
items: releases.map((release) => {
const subdomain = release
.replace("releases/v", "")
.replace(".", "-");
const label =
"Version: " + release.replace("releases/", "");
return {
label: release.replace("releases/", ""),
label: label,
href: `https://version-${subdomain}.goauthentik.io`,
};
}),