From 96475dc7df9da4b8fe4eb4c136e759be58ee7fdd Mon Sep 17 00:00:00 2001 From: carlosthe19916 <2582866+carlosthe19916@users.noreply.github.com> Date: Tue, 6 Aug 2024 19:02:07 -0500 Subject: [PATCH] fix: allow all https request to pass --- src/main/resources/application.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 37def4f..2a854aa 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,3 +1,4 @@ quarkus.rest-client.trustd_yaml.url=${TRUSTIFY_URL:http://localhost:8080} quarkus.rest-client.trustd_yaml.scope=jakarta.inject.Singleton quarkus.rest-client.trustd_yaml.verify-host=false +quarkus.tls.trust-all=true \ No newline at end of file