From df33b4d3e92e2e8b68cef92b4545d57f628efd0c Mon Sep 17 00:00:00 2001 From: Marco Lecheler Date: Wed, 24 Sep 2025 17:48:33 +0200 Subject: [PATCH] website: fix docs links (#16926) * fix: add other docker-compose links * fix: update other docs urls --- authentik/outposts/models.py | 2 +- internal/outpost/proxyv2/application/mode_common.go | 2 +- web/security.txt | 2 +- web/src/admin/admin-overview/cards/VersionStatusCard.ts | 2 +- .../elements/cards/stories/QuickActionsCard.stories.ts | 4 ++-- website/docs/developer-docs/releases/index.md | 8 ++++---- website/docs/releases/old/v0.10.md | 2 +- website/docs/releases/old/v0.11.md | 2 +- website/docs/releases/old/v0.12.md | 2 +- .../sharepoint-se/index.md | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/authentik/outposts/models.py b/authentik/outposts/models.py index 1e114c6377..8e40bf11f8 100644 --- a/authentik/outposts/models.py +++ b/authentik/outposts/models.py @@ -357,7 +357,7 @@ class Outpost(ScheduledModel, SerializerModel, ManagedModel): message=( "While setting the permissions for the service-account, a " "permission was not found: Check " - "https://goauthentik.io/docs/troubleshooting/missing_permission" + "https://docs.goauthentik.io/troubleshooting/missing_permission" ), ).with_exception(exc).set_user(user).save() else: diff --git a/internal/outpost/proxyv2/application/mode_common.go b/internal/outpost/proxyv2/application/mode_common.go index 7972b490ba..da4d597e6e 100644 --- a/internal/outpost/proxyv2/application/mode_common.go +++ b/internal/outpost/proxyv2/application/mode_common.go @@ -38,7 +38,7 @@ func (a *Application) setAuthorizationHeader(headers http.Header, c *Claims) { } func (a *Application) addHeaders(headers http.Header, c *Claims) { - // https://goauthentik.io/docs/providers/proxy/proxy + // https://docs.goauthentik.io/add-secure-apps/providers/proxy headers.Set("X-authentik-username", c.PreferredUsername) headers.Set("X-authentik-groups", strings.Join(c.Groups, "|")) headers.Set("X-authentik-entitlements", strings.Join(c.Entitlements, "|")) diff --git a/web/security.txt b/web/security.txt index 2d1f1691c1..d44186fccf 100644 --- a/web/security.txt +++ b/web/security.txt @@ -1,4 +1,4 @@ Contact: mailto:security@goauthentik.io Expires: Mon, 1 Jan 2024 00:00 +0200 Preferred-Languages: en, de -Policy: https://goauthentik.io/docs/security/policy +Policy: https://docs.goauthentik.io/security/policy diff --git a/web/src/admin/admin-overview/cards/VersionStatusCard.ts b/web/src/admin/admin-overview/cards/VersionStatusCard.ts index b7f86fb4f5..7bdcd7e169 100644 --- a/web/src/admin/admin-overview/cards/VersionStatusCard.ts +++ b/web/src/admin/admin-overview/cards/VersionStatusCard.ts @@ -56,7 +56,7 @@ export class VersionStatusCard extends AdminStatusCard { let text = this.value?.versionCurrent; const versionFamily = this.value?.versionCurrent.split("."); versionFamily?.pop(); - let link = `https://goauthentik.io/docs/releases/${versionFamily?.join(".")}`; + let link = `https://docs.goauthentik.io/releases/${versionFamily?.join(".")}`; if (this.value?.buildHash) { text = this.value.buildHash?.substring(0, 7); link = `https://github.com/goauthentik/authentik/commit/${this.value.buildHash}`; diff --git a/web/src/elements/cards/stories/QuickActionsCard.stories.ts b/web/src/elements/cards/stories/QuickActionsCard.stories.ts index c096d90e9e..30d5422819 100644 --- a/web/src/elements/cards/stories/QuickActionsCard.stories.ts +++ b/web/src/elements/cards/stories/QuickActionsCard.stories.ts @@ -11,7 +11,7 @@ const ACTIONS: QuickAction[] = [ ["Check the logs", "/events/log"], ["Explore integrations", "https://integrations.goauthentik.io/", true], ["Manage users", "/identity/users"], - ["Check the release notes", "https://goauthentik.io/docs/releases/", true], + ["Check the release notes", "https://docs.goauthentik.io/releases/", true], ]; const metadata: Meta = { @@ -41,7 +41,7 @@ const ACTIONS: QuickAction[] = [ ["Check the logs", "/events/log"], ["Explore integrations", "https://goauthentik.io/integrations/", true], ["Manage users", "/identity/users"], - ["Check the release notes", "https://goauthentik.io/docs/releases/", true], + ["Check the release notes", "https://docs.goauthentik.io/releases/", true], ]; \`\`\` diff --git a/website/docs/developer-docs/releases/index.md b/website/docs/developer-docs/releases/index.md index 9ddff745f2..f1bcfa6fe7 100644 --- a/website/docs/developer-docs/releases/index.md +++ b/website/docs/developer-docs/releases/index.md @@ -50,13 +50,13 @@ - Add the following to the release notes ``` - See https://goauthentik.io/docs/releases/2022.12 + See https://docs.goauthentik.io/releases/2022.12 ``` Or if creating a subsequent release ``` - See https://goauthentik.io/docs/releases/2022.12#fixed-in-2022121 + See https://docs.goauthentik.io/releases/2022.12#fixed-in-2022121 ``` - Auto-generate the full release notes using the GitHub _Generate Release Notes_ feature @@ -124,7 +124,7 @@ If you have any questions or comments about this advisory: Subject: `Notice of upcoming authentik Security releases 2022.10.3 and 2022.11.3` ```markdown -We'll be publishing a security Issue (CVE-2022-xxxxx) and accompanying fix on _date_, 13:00 UTC with the Severity level High. Fixed versions x, y and z will be released alongside a workaround for previous versions. For more info, see the authentik Security policy here: https://goauthentik.io/docs/security/policy. +We'll be publishing a security Issue (CVE-2022-xxxxx) and accompanying fix on _date_, 13:00 UTC with the Severity level High. Fixed versions x, y and z will be released alongside a workaround for previous versions. For more info, see the authentik Security policy here: https://docs.goauthentik.io/security/policy. ``` @@ -133,7 +133,7 @@ We'll be publishing a security Issue (CVE-2022-xxxxx) and accompanying fix on _d Discord template ```markdown -@everyone We'll be publishing a security Issue (CVE-2022-xxxxx) and accompanying fix on _date_, 13:00 UTC with the Severity level High. Fixed versions x, y and z will be released alongside a workaround for previous versions. For more info, see the authentik Security policy here: https://goauthentik.io/docs/security/policy. +@everyone We'll be publishing a security Issue (CVE-2022-xxxxx) and accompanying fix on _date_, 13:00 UTC with the Severity level High. Fixed versions x, y and z will be released alongside a workaround for previous versions. For more info, see the authentik Security policy here: https://docs.goauthentik.io/security/policy. ``` diff --git a/website/docs/releases/old/v0.10.md b/website/docs/releases/old/v0.10.md index 47be7f9b18..5994a66ee8 100644 --- a/website/docs/releases/old/v0.10.md +++ b/website/docs/releases/old/v0.10.md @@ -37,7 +37,7 @@ This update brings a lot of big features, such as: ### docker-compose -The docker-compose file has been updated, please download the latest from `https://goauthentik.io/docker-compose.yml`. +The docker-compose file has been updated, please download the latest from `https://docs.goauthentik.io/docker-compose.yml`. By default, the new compose file uses a fixed version to prevent unintended updates. Before updating the file, stop all containers. Then download the file, pull the new containers and start the database. diff --git a/website/docs/releases/old/v0.11.md b/website/docs/releases/old/v0.11.md index 54d91cbfe7..8b7a73316c 100644 --- a/website/docs/releases/old/v0.11.md +++ b/website/docs/releases/old/v0.11.md @@ -20,6 +20,6 @@ This update brings these headline features: ## Upgrading -This upgrade can be done as any other patch upgrade, the only external change is the new docker-compose file, which enabled the Docker Integration for Outposts. To use this feature, please download the latest docker-compose from [here](https://goauthentik.io/docker-compose.yml). +This upgrade can be done as any other patch upgrade, the only external change is the new docker-compose file, which enabled the Docker Integration for Outposts. To use this feature, please download the latest docker-compose from [here](https://docs.goauthentik.io/docker-compose.yml). Afterwards, you can simply run `docker-compose up -d` and then the normal upgrade command of `docker-compose run --rm server migrate`. diff --git a/website/docs/releases/old/v0.12.md b/website/docs/releases/old/v0.12.md index f5272b80c0..7db0254cd8 100644 --- a/website/docs/releases/old/v0.12.md +++ b/website/docs/releases/old/v0.12.md @@ -21,7 +21,7 @@ Fixes: ### docker-compose -Docker-compose users should download the latest docker-compose file from [here](https://goauthentik.io/docker-compose.yml). This includes the new traefik 2.3. +Docker-compose users should download the latest docker-compose file from [here](https://docs.goauthentik.io/docker-compose.yml). This includes the new traefik 2.3. Afterwards, you can simply run `docker-compose up -d` and then the normal upgrade command of `docker-compose run --rm server migrate`. diff --git a/website/integrations/chat-communication-collaboration/sharepoint-se/index.md b/website/integrations/chat-communication-collaboration/sharepoint-se/index.md index 57965404dd..77945d50c7 100644 --- a/website/integrations/chat-communication-collaboration/sharepoint-se/index.md +++ b/website/integrations/chat-communication-collaboration/sharepoint-se/index.md @@ -340,7 +340,7 @@ From the authentik Admin Dashboard: :::note The following procedure apply to an authentik deployment within Kubernetes. -For other kinds of deployment, please refer to the [authentik documentation](https://goauthentik.io/docs/). +For other kinds of deployment, please refer to the [authentik documentation](https://docs.goauthentik.io/). ::: 1. Follow authentik [LDAP Provider Generic Setup](https://version-2023-10.goauthentik.io/docs/providers/ldap/generic_setup) with the following steps :