Skip to content

Commit dd05895

Browse files
committed
Update blog post links
1 parent 2e2bfa0 commit dd05895

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export default defineConfig({
120120
{
121121
icon: "rss",
122122
label: "Blog",
123-
href: "https://blog.duendesoftware.com/",
123+
href: "https://duendesoftware.com/blog",
124124
},
125125
],
126126
components: {

src/content/docs/bff/samples/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ This sample shows how to use the BFF extensions for Microsoft YARP.
9696
## OpenAPI and SwaggerUI
9797

9898
This sample shows how to use OpenAPI and SwaggerUI in combination with BFF.
99-
A walkthrough is available [on the Duende blog](https://blog.duendesoftware.com/posts/20250430-managing-openapi-specifications-with-backend-for-frontend-and-swagger-ui).
99+
A walkthrough is available [on the Duende blog](https://duendesoftware.com/blog/20250430-managing-openapi-specifications-with-backend-for-frontend-and-swagger-ui).
100100

101101
<LinkCard
102102
description="GitHub Repository for the BFF framework integration with OpenAPI and SwaggerUI"

src/content/docs/general/glossary.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ handling this key material, including storage and rotation.
3939
<CardGrid>
4040
<LinkCard
4141
description="Automatic Key Management post"
42-
href="https://blog.duendesoftware.com/posts/20201028_key_management/"
42+
href="https://duendesoftware.com/blog/20201028-key-management"
4343
title="More Details"
4444
target="_blank"
4545
/>
@@ -65,7 +65,7 @@ server-side sessions enables more architectural features in your IdentityServer,
6565
<CardGrid>
6666
<LinkCard
6767
description="Server-side Session Management post"
68-
href="https://blog.duendesoftware.com/posts/20220406_session_management/"
68+
href="https://duendesoftware.com/blog/20220406-session-management"
6969
title="More Details"
7070
target="_blank"
7171
/>
@@ -86,7 +86,7 @@ browser-based frontends (e.g. SPAs or Blazor WASM applications) with ASP.NET Cor
8686
<CardGrid>
8787
<LinkCard
8888
description="BFF Security Framework post"
89-
href="https://blog.duendesoftware.com/posts/20210326_bff/"
89+
href="https://duendesoftware.com/blog/20210326-bff"
9090
title="More Details"
9191
target="_blank"
9292
/>
@@ -133,7 +133,7 @@ This is designed to address the performance concern and allowing changes to the
133133
<CardGrid>
134134
<LinkCard
135135
description="Dynamic Authentication Providers post"
136-
href="https://blog.duendesoftware.com/posts/20210517_dynamic_providers/"
136+
href="https://duendesoftware.com/blog/20210517-dynamic-providers"
137137
title="More Details"
138138
target="_blank"
139139
/>
@@ -155,7 +155,7 @@ boundary.
155155
<CardGrid>
156156
<LinkCard
157157
description="Resource Isolation post"
158-
href="https://blog.duendesoftware.com/posts/20201230_resource_isolation/"
158+
href="https://duendesoftware.com/blog/20201230-resource-isolation"
159159
title="More Details"
160160
target="_blank"
161161
/>
@@ -178,7 +178,7 @@ CIBA is one of the requirements to support the Financal-grade API compliance.
178178
<CardGrid>
179179
<LinkCard
180180
description="Client-Initiated Backchannel Authentication post"
181-
href="https://blog.duendesoftware.com/posts/20220107_ciba/"
181+
href="https://duendesoftware.com/blog/20220107-ciba"
182182
title="More Details"
183183
target="_blank"
184184
/>

src/content/docs/identityserver/quickstarts/javascript-clients/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ with a backend and those without.
1616

1717
Browser-based applications **with a backend** are more secure, making it the
1818
recommended style. This style uses the ["Backend For Frontend"
19-
pattern](https://blog.duendesoftware.com/posts/20210326_bff/), or "BFF" for
19+
pattern](https://duendesoftware.com/blog/20210326-bff), or "BFF" for
2020
short, which relies on the backend host to implement all the security
2121
protocol interactions with the token server. The `Duende.BFF` library is used in
2222
[this quickstart](/identityserver/quickstarts/javascript-clients/js-with-backend/) to easily support the BFF pattern.

src/content/docs/identityserver/tokens/refresh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ the flag is off, the token is marked as consumed instead. Prior to version 6.3,
117117
marked as consumed.
118118

119119
Rotating the tokens on every
120-
use [has limited security benefits](https://blog.duendesoftware.com/posts/20240405_refresh_token_reuse/) regardless of
120+
use [has limited security benefits](https://duendesoftware.com/blog/20240405-refresh-token-reuse) regardless of
121121
which type of client is used. And it comes with the cost of database pressure and reliability issues. Reusable refresh
122122
tokens are robust to network failures in a way that one time use tokens are not: if a one-time use refresh token is used
123123
to produce a new token, but the response containing the new refresh token is lost due to a network issue, the client

0 commit comments

Comments
 (0)