Skip to content

Commit af65ec8

Browse files
authored
Merge pull request #1049 from DuendeSoftware/mb/fix
Fix broken links
2 parents f4a61e8 + c16298f commit af65ec8

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

astro/src/content/docs/general/data-protection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Some of our most common support requests are related to [Data Protection Keys](#
2121

2222
Duende's SDKs, like IdentityServer and BFF, make extensive use of ASP.NET's [data protection](https://docs.microsoft.com/en-us/aspnet/core/security/data-protection/) feature. It is crucial that you configure data protection correctly when deploying your application in production.
2323

24+
## Data Protection Keys
25+
2426
In local development, ASP.NET automatically creates data protection keys, but in a deployed environment, you will need
2527
to ensure that your data protection keys are stored in a persistent way and shared across all load balanced instances of
2628
your implementation. This means you'll need to choose where to store and how to protect the data

astro/src/content/docs/identityserver/deployment/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ While this is a lot of decisions to make, this also means that your IdentityServ
3838
Microsoft publishes extensive [advice and documentation](https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/) about deploying ASP.NET Core applications, and it is applicable to IdentityServer implementations. We're not attempting to replace that documentation - or the documentation for other tools that you might be using in your environment. Rather, this section of our documentation focuses on IdentityServer-specific deployment and hosting considerations.
3939

4040
:::note
41-
Our experience has been that these topics are very important. Some of our most common support requests are related to [Data Protection](#data-protection-keys) and [Load Balancing](#proxy-servers-and-load-balancers), so we strongly encourage you to review those pages, along with the rest of this chapter before deploying IdentityServer to production.
41+
Our experience has been that these topics are very important. Some of our most common support requests are related to [Data Protection](/general/data-protection.md#data-protection-keys) and [Load Balancing](#proxy-servers-and-load-balancers), so we strongly encourage you to review those pages, along with the rest of this chapter before deploying IdentityServer to production.
4242
:::
4343

4444
## Proxy Servers and Load Balancers

astro/src/content/docs/identityserver/ui/server-side-sessions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ includes all claims and the `AuthenticationProperties.Items` collection. The `It
6767
data. The `AuthenticationProperties` is included in the call to `SignInAsync` that establishes the user session in the
6868
UI code.
6969

70-
This data will be serialized and protected using ASP.NET Core's [data protection](/identityserver/deployment/index.md#data-protection-keys) feature to protect any user PII from being
70+
This data will be serialized and protected using ASP.NET Core's [data protection](/general/data-protection.md#data-protection-keys) feature to protect any user PII from being
7171
directly readable in the data store. To allow querying, values from the user's session are extracted and used as indices in the store.
7272
These values are the user's:
7373

0 commit comments

Comments
 (0)