Skip to content

Commit ea43aaa

Browse files
Update documentation links and paths for consistency, standardize use of /index.md suffix across all internal links.
1 parent 1277505 commit ea43aaa

File tree

13 files changed

+11
-14
lines changed

13 files changed

+11
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ WebStorm has Grazie as a built-in spell checker and grammar checker, and support
5959

6060
* Always prefer linking internally over linking externally. For example, when you talk about data protection, prefer an internal link over a link to external sites.
6161
* When linking to external content, consider writing one or two sentences about the context and what the reader will learn on the linked page.
62-
* When linking other pages, use a path that starts at the content root, like `/identityserver/troubleshooting.md`. Use the `.md(x)` file extension - Starlight will update the link to the correct format on build.
62+
* When linking other pages, use a path that starts at the content root, like `/identityserver/troubleshooting/index.md`. Use the `.md(x)` file extension - Starlight will update the link to the correct format on build.
6363
* When linking to external resources, use the full URL using HTTPS.
6464
* You can link to header anchors using the `#` symbol, for example `[multiple authentication methods](/identityserver/ui/federation.md#multiple-authentication-methods-for-users)`.
6565
* Link relevant text. Prefer `learn more about [improving the sign-in experience]` over `click [here] to learn more`.

src/content/docs/identitymodel-oidcclient/advanced/dpop.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Console.WriteLine(jwk);
4141
:::caution
4242
In a production scenario, you'll want to store this JWK in a secure location
4343
and use ASP.NET's [data protection](https://docs.microsoft.com/en-us/aspnet/core/security/data-protection/) to further
44-
protect the JWK. See [our data protection guide](/identityserver/deployment#aspnet-core-data-protection) for more
44+
protect the JWK. See [our data protection guide](/identityserver/deployment/index.md#aspnet-core-data-protection) for more
4545
information.
4646
:::
4747

src/content/docs/identityserver/aspnet-identity/overview.md renamed to src/content/docs/identityserver/aspnet-identity/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ description: Guide to integrating ASP.NET Identity with IdentityServer for user
44
sidebar:
55
label: Overview
66
redirect_from:
7-
- /identityserver/aspnet-identity/
87
- /identityserver/v5/aspnet_identity/
98
- /identityserver/v6/aspnet_identity/
109
- /identityserver/v7/aspnet_identity/

src/content/docs/identityserver/Deployment/overview.md renamed to src/content/docs/identityserver/deployment/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ sidebar:
66
label: Overview
77
order: 10
88
redirect_from:
9-
- /identityserver/deployment/
109
- /dataprotection/
1110
- /identityserver/v5/deployment/
1211
- /identityserver/v6/deployment/

src/content/docs/identityserver/diagnostics/data.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The diagnostics data contains the following information:
3838
* Registered non-default implementations of Duende IdentityServer extension points
3939
* Extension point type, implementation type, assembly name and version
4040
* [`IdentityServerOptions`](/identityserver/reference/options.md) configuration
41-
* [Data Protection](/identityserver/deployment.md#aspnet-core-data-protection) configuration
41+
* [Data Protection](/identityserver/deployment/index.md#aspnet-core-data-protection) configuration
4242
* `ApplicationDiscriminator`, `XmlEncryptor` and `XmlRepository`
4343
* Basic server information
4444
* Host name

src/content/docs/identityserver/fundamentals/key-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ example, if you implement the `ISigningKeyStore` to store your keys in Azure Key
123123
Vault, you could safely disabled `DataProtectKeys`, relying on Azure Key Vault
124124
to encrypt your signing keys at rest.
125125

126-
See the [deployment](/identityserver/deployment) section for more information
126+
See the [deployment](/identityserver/deployment/index.md) section for more information
127127
about setting up data protection.
128128

129129
### Manage Multiple Keys

src/content/docs/identityserver/fundamentals/users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ the security protocol (OpenID Connect and OAuth).
2222

2323
:::note
2424
While you can use any custom user database or identity management library for your users, we
25-
provide [integration support](/identityserver/aspnet-identity/) for ASP.NET Identity.
25+
provide [integration support](/identityserver/aspnet-identity/index.md) for ASP.NET Identity.
2626
:::
2727

2828
## Authorization Endpoint And Login Page Workflow

src/content/docs/identityserver/overview/packaging.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,5 @@ The **Duende IdentityServer with ASP.NET Core Identity** template integrates wit
239239
provide you with an instance of Duende IdentityServer that has a user store powered by the Microsoft
240240
library.
241241

242-
[Please read our ASP.NET Identity documentation](/identityserver/aspnet-identity/), to learn more about this integration.
242+
[Please read our ASP.NET Identity documentation](/identityserver/aspnet-identity/index.md), to learn more about this integration.
243243

src/content/docs/identityserver/troubleshooting/overview.mdx renamed to src/content/docs/identityserver/troubleshooting/index.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ sidebar:
55
order: 15
66
redirect_from:
77
- /mim/
8-
- /identityserver/troubleshooting/
98
- /identityserver/v5/troubleshooting/
109
- /identityserver/v6/troubleshooting/
1110
- /identityserver/v7/troubleshooting/
@@ -54,7 +53,7 @@ Core Authentication libraries. If it is not correctly configured it might result
5453
- The key `{xxxxx-xxxx-xxx-xxx-xxxxxxx}` was not found in the key ring.
5554
- Failed to unprotect AuthenticationTicket payload for key `{key}`
5655

57-
See [our data protection guide](/identityserver/deployment#aspnet-core-data-protection) for more
56+
See [our data protection guide](/identityserver/deployment/index.md#aspnet-core-data-protection) for more
5857
information.
5958

6059
## Load Balancing, proxies and TLS offloading
@@ -67,7 +66,7 @@ To diagnose, open the discovery document (append `/.well-known/openid-configurat
6766
e.g. https://demo.duendesoftware.com/.well-known/openid-configuration. Make sure that the URLs listed in there have the
6867
correct host name and are listed as https (assuming you are running under https, which you should).
6968

70-
See [our proxy guide](/identityserver/deployment#proxy-servers-and-load-balancers) for more information.
69+
See [our proxy guide](/identityserver/deployment/index.md#proxy-servers-and-load-balancers) for more information.
7170

7271
## TaskCancellationExceptions
7372

0 commit comments

Comments
 (0)