Put CORS header back to http://* with comment on why browsers are annoying
This commit is contained in:
parent
d1ba5dff38
commit
40f5c53c05
1 changed files with 3 additions and 1 deletions
|
@ -5,7 +5,9 @@ receivers:
|
|||
endpoint: 0.0.0.0:4318
|
||||
cors:
|
||||
allowed_origins:
|
||||
- "*"
|
||||
# This can't be '*' because opentelemetry-js uses sendBeacon which always operates
|
||||
# in 'withCredentials' mode, which browsers don't allow with an allow-origin of '*'
|
||||
- "http://*"
|
||||
allowed_headers:
|
||||
- "*"
|
||||
processors:
|
||||
|
|
Loading…
Reference in a new issue