Browse Source

Fixed CORS mapping

pull/1567/head
Volodymyr Babak 7 years ago
parent
commit
0285832bed
  1. 4
      application/src/main/resources/thingsboard.yml

4
application/src/main/resources/thingsboard.yml

@ -273,7 +273,7 @@ updates:
spring.mvc.cors:
mappings:
# Intercept path
"/api/auth/**":
"[/api/auth/**]":
#Comma-separated list of origins to allow. '*' allows all origins. When not set,CORS support is disabled.
allowed-origins: "*"
#Comma-separated list of methods to allow. '*' allows all methods.
@ -284,7 +284,7 @@ spring.mvc.cors:
max-age: "1800"
#Set whether credentials are supported. When not set, credentials are not supported.
allow-credentials: "true"
"/api/v1/**":
"[/api/v1/**]":
allowed-origins: "*"
allowed-methods: "*"
allowed-headers: "*"

Loading…
Cancel
Save