From 70e0625d3fffe87e84ab435f4426ba02df199f10 Mon Sep 17 00:00:00 2001 From: Denis Lugowski Date: Sun, 16 Nov 2025 09:21:00 +0100 Subject: [PATCH] fix(backend): Provide default values for resourceserver variables --- legalconsenthub-backend/src/main/resources/application.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legalconsenthub-backend/src/main/resources/application.yaml b/legalconsenthub-backend/src/main/resources/application.yaml index 93288c5..61e9046 100644 --- a/legalconsenthub-backend/src/main/resources/application.yaml +++ b/legalconsenthub-backend/src/main/resources/application.yaml @@ -35,5 +35,5 @@ spring: oauth2: resourceserver: jwt: - issuer-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUER_URI} - jwk-set-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWK_SET_URI} + issuer-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUER_URI:http://localhost:7080} + jwk-set-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWK_SET_URI:http://localhost:7080}