Parcourir la source

enable cors for health and info endpoints

Daniel Bohry il y a 7 mois
Parent
commit
d31357a3aa
1 fichiers modifiés avec 6 ajouts et 1 suppressions
  1. 6 1
      src/main/resources/application.yml

+ 6 - 1
src/main/resources/application.yml

@@ -35,4 +35,9 @@ management:
   endpoints:
     web:
       exposure:
-        include: info,health
+        include: info,health
+      cors:
+        allowed-origins: "*"
+        allowed-methods: GET
+        allowed-headers: "*"
+        max-age: 3600