From 788e3021d8fd3eda17306423388aac273abc97f9 Mon Sep 17 00:00:00 2001 From: Michael Baumberger Date: Mon, 9 Dec 2024 21:05:58 +0100 Subject: [PATCH] Remove unused key-alias from application-prod.yml The key-alias property was redundant and has been removed to simplify the SSL configuration. This change does not affect the existing functionality as the SSL setup continues to use the bundle and key-store properties effectively. --- gateway-service/src/main/resources/application-prod.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/gateway-service/src/main/resources/application-prod.yml b/gateway-service/src/main/resources/application-prod.yml index 8bbcf3da..d5de9e48 100644 --- a/gateway-service/src/main/resources/application-prod.yml +++ b/gateway-service/src/main/resources/application-prod.yml @@ -2,7 +2,6 @@ server: port: 443 ssl: enabled: true - key-alias: server bundle: "server" key-store-password: ${SSL_KEYSTORE_PASSWORD} key-store: "/data/ssl/keystore.p12"