You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: astro/src/content/docs/general/data-protection.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,18 +14,18 @@ Any Duende server-side application, like IdentityServer or BFF, is developed and
14
14
It is important to correctly configure ASP.NET Core Data Protection in your application.
15
15
16
16
:::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.
18
18
:::
19
19
20
-
## ASP.NET Core Data Protection
20
+
## About ASP.NET Core Data Protection
21
21
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.
23
23
24
24
In local development, ASP.NET automatically creates data protection keys, but in a deployed environment, you will need
25
25
to ensure that your data protection keys are stored in a persistent way and shared across all load balanced instances of
26
26
your implementation. This means you'll need to choose where to store and how to protect the data
27
27
protection keys, as appropriate for your environment. Microsoft has [extensive
0 commit comments