From ee3a677200b5f266953a4692b88c251e1dc93199 Mon Sep 17 00:00:00 2001 From: jferrie Date: Wed, 7 Feb 2024 13:53:21 -0800 Subject: [PATCH] specifying TLS supported protocols to disable old ones --- src/main/resources/application.properties | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 04ee249..92164b1 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -12,6 +12,10 @@ server.port=18443 server.insecure-redirect-port=18443 server.insecure-port=18880 +# TLS +server.ssl.protocol=TLS +server.ssl.enabled-protocols=TLSv1.2,TLSv1.3 + # Management management.endpoints.enabled-by-default=false management.endpoints.web.base-path=/status @@ -19,4 +23,4 @@ management.endpoints.web.base-path=/status # Managment - Health management.endpoints.web.path-mapping.health=health management.endpoint.health.enabled=false -management.endpoint.health.show-details=always \ No newline at end of file +management.endpoint.health.show-details=always