From b8af69ccf6bd3ceaeaecbcf469816263562ff866 Mon Sep 17 00:00:00 2001 From: Stefan Mogeritsch Date: Tue, 25 Nov 2025 13:04:25 +0100 Subject: [PATCH] refactoring: Docker-Dateien Api-Gateway --- compose.yaml | 2 +- .../mocode/infrastructure/gateway/security/SecurityConfig.kt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index 7338594b..9aec51cd 100644 --- a/compose.yaml +++ b/compose.yaml @@ -168,7 +168,7 @@ services: GRADLE_VERSION: 9.1.0 JAVA_VERSION: 21 VERSION: 1.0.0 - BUILD_DATE: "2025-11-21" + BUILD_DATE: "2025-11-25" container_name: ${COMPOSE_PROJECT_NAME}-gateway restart: no ports: diff --git a/infrastructure/gateway/src/main/kotlin/at/mocode/infrastructure/gateway/security/SecurityConfig.kt b/infrastructure/gateway/src/main/kotlin/at/mocode/infrastructure/gateway/security/SecurityConfig.kt index 88d59c89..9e81568a 100644 --- a/infrastructure/gateway/src/main/kotlin/at/mocode/infrastructure/gateway/security/SecurityConfig.kt +++ b/infrastructure/gateway/src/main/kotlin/at/mocode/infrastructure/gateway/security/SecurityConfig.kt @@ -125,7 +125,8 @@ data class GatewaySecurityProperties( "/actuator/**", "/webjars/**", "/v3/api-docs/**", - "/api/auth/**" // Alle Auth-Endpunkte + "/api/auth/**", // Alle Auth-Endpunkte + "/api/ping/**" ) )