From d02149cb6be1c69d029671c0d565316642947008 Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 11 Mar 2026 12:44:23 +0100 Subject: [PATCH] Update AllowedOrigins to use localhost:8080 instead of 7202 Replaced "https://localhost:7202" with "http://localhost:8080" in the AllowedOrigins setting. "https://digitale.unterschrift.wisag.de/" remains unchanged. This updates the allowed local development origin. --- EnvelopeGenerator.Web/appsettings.Security.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Web/appsettings.Security.json b/EnvelopeGenerator.Web/appsettings.Security.json index b4232996..f1132523 100644 --- a/EnvelopeGenerator.Web/appsettings.Security.json +++ b/EnvelopeGenerator.Web/appsettings.Security.json @@ -10,7 +10,7 @@ "media-src 'self'", "object-src 'self'" ], - "AllowedOrigins": [ "https://localhost:7202", "https://digitale.unterschrift.wisag.de/" ], + "AllowedOrigins": [ "http://localhost:8080", "https://digitale.unterschrift.wisag.de/" ], "TFARegParams": { "TimeLimit": "90.00:00:00" }