Skip to content

Commit

Permalink
fix(conf): use list of properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-Guillemin committed Jan 9, 2024
1 parent eea099e commit d429cbf
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/main/resources/config/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,21 @@ app:
cors:
enable: true
allow-credentials: true
allowed-origins: >
http://localhost:5173,
http://10.209.28.14:5173,
https://*.giprecia.net
exposed-headers: >
x-auth-token,
x-requested-with,
x-xsrf-token
allowed-headers: >
content-type,
authorization,
x-com-persist,
X-Auth-Token,
x-auth-token,
x-requested-with,
x-xsrf-token
allowed-methods: >
GET
allowed-origins:
- http://localhost:5173
- http://10.209.28.14:5173
- https://*.giprecia.net
exposed-headers:
- x-auth-token
- x-requested-with
- x-xsrf-token
allowed-headers:
- content-type
- authorization
- x-com-persist
- X-Auth-Token
- x-auth-token
- x-requested-with
- x-xsrf-token
allowed-methods:
- GET

0 comments on commit d429cbf

Please sign in to comment.