From cca44468b1cc591b1bfa339eb290da7949f3769d Mon Sep 17 00:00:00 2001 From: veenm Date: Tue, 4 Mar 2025 22:03:24 +0100 Subject: [PATCH] added CORS_ORIGINS env --- src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 2fc89d5..e657f40 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -9,7 +9,7 @@ quarkus.hibernate-orm.log.highlight-sql=false quarkus.hibernate-orm.log.sql=false quarkus.http.cors=true -quarkus.http.cors.origins=* +quarkus.http.cors.origins=${CORS_ORIGINS} quarkus.http.cors.methods=GET,POST,OPTIONS,DELETE,PUT # Mailer configuratie