Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
move refresh tokens to oidc
  • Loading branch information
EdwardAngert committed Jun 13, 2025
commit cc0e46fc9822876fd7b2cf3a0cd24c74e6727e9d
2 changes: 1 addition & 1 deletion docs/admin/setup/appearance.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ users of which network their Coder deployment is on.

## OIDC Login Button Customization

[Use environment variables to customize](../users/oidc-auth.md#oidc-login-customization)
[Use environment variables to customize](../users/oidc-auth/index.md#oidc-login-customization)
the text and icon on the OIDC button on the Sign In page.

## Support Links
Expand Down
2 changes: 1 addition & 1 deletion docs/admin/users/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ enforces MFA correctly.

## Configuring SSO

- [OpenID Connect](./oidc-auth.md) (e.g. Okta, KeyCloak, PingFederate, Azure AD)
- [OpenID Connect](./oidc-auth/index.md) (e.g. Okta, KeyCloak, PingFederate, Azure AD)
- [GitHub](./github-auth.md) (or GitHub Enterprise)

## Groups
Expand Down
File renamed without changes.
18 changes: 9 additions & 9 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,14 @@
{
"title": "OIDC Authentication",
"description": "Configure OpenID Connect authentication with identity providers like Okta or Active Directory",
"path": "./admin/users/oidc-auth.md"
"path": "./admin/users/oidc-auth/index.md",
"children": [
{
"title": "Configure OIDC refresh tokens",
"description": "How to configure OIDC refresh tokens",
"path": "./admin/users/oidc-auth/refresh-tokens.md"
}
]
},
{
"title": "GitHub Authentication",
Expand Down Expand Up @@ -640,14 +647,7 @@
"title": "External Authentication",
"description": "Learn how to configure external authentication",
"path": "./admin/external-auth/index.md",
"icon_path": "./images/icons/plug.svg",
"children": [
{
"title": "Configure OIDC refresh tokens",
"description": "How to configure OIDC refresh tokens",
"path": "./admin/external-auth/refresh-tokens.md"
}
]
"icon_path": "./images/icons/plug.svg"
},
{
"title": "Integrations",
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/best-practices/security-best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ credentials are stolen.

### User authentication

Configure [OIDC authentication](../../admin/users/oidc-auth.md) against your
Configure [OIDC authentication](../../admin/users/oidc-auth/index.md) against your
organization’s Identity Provider (IdP), such as Okta, to allow single-sign on.

1. Enable and require two-factor authentication in your identity provider.
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/configuring-okta.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Sign On (SSO) on Coder.

To configure custom claims in Okta to support syncing roles and groups with
Coder, you must first have setup an Okta application with
[OIDC working with Coder](../admin/users/oidc-auth.md).
[OIDC working with Coder](../admin/users/oidc-auth/index.md).
From here, we will add additional claims for Coder to use for syncing groups and
roles.

Expand Down
Loading