Skip to content

Commit 69a5124

Browse files
committed
Added changes from PR suggestions
1 parent 22d9998 commit 69a5124

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ Any Duende server-side application, like IdentityServer or BFF, is developed and
1414
It is important to correctly configure ASP.NET Core Data Protection in your application.
1515

1616
:::tip
17-
Some of our most common support requests are related to [Data Protection Keys](#data-protection-keys), so we strongly encourage you to review the rest of this page before deploying to production.
17+
Some of our most common support requests are related to [Data Protection Keys](#data-protection-keys). We strongly encourage you to review the rest of this page before deploying to production.
1818
:::
1919

20-
## ASP.NET Core Data Protection
20+
## About ASP.NET Core Data Protection
2121

22-
Data Protection in any Duende server-side application makes 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 before you start using your application in production.
22+
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

2424
In local development, ASP.NET automatically creates data protection keys, but in a deployed environment, you will need
2525
to ensure that your data protection keys are stored in a persistent way and shared across all load balanced instances of
2626
your implementation. This means you'll need to choose where to store and how to protect the data
2727
protection keys, as appropriate for your environment. Microsoft has [extensive
28-
documentation](https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview)
28+
documentation on data protection](https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview)
2929
describing how to configure storage and protection of data protection keys.
3030

3131
A typical implementation should include data protection configuration code, like this:

0 commit comments

Comments
 (0)