You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to set CORS access-control-allow-headers to "*". but I got this errror.
ignoring invalid cors headers on Ingress "xx/xx" *
base on description here. "*" should be valid headers.
* (wildcard)
The value "*" only counts as a special wildcard value for requests without credentials (requests without [HTTP cookies]
(https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies) or HTTP authentication information). In requests with credentials, it is
treated as the literal header name "*" without special semantics. Note that the [Authorization](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Authorization) header can't be wildcarded and always needs to be listed explicitly.
Expected behavior
Steps to reproduce the problem
add annotation of haproxy-ingress.github.io/cors-allow-headers: '*' to ingress
Description of the problem
I want to set CORS access-control-allow-headers to "*". but I got this errror.
ignoring invalid cors headers on Ingress "xx/xx" *
base on description here. "*" should be valid headers.
Expected behavior
Steps to reproduce the problem
haproxy-ingress.github.io/cors-allow-headers: '*'
to ingressEnvironment information
HAProxy Ingress version:
v0.xx
image version: quay.io/jcmoraisjr/haproxy-ingress:v0.14.2
Root cause
Code corsHeadersRegex are hard coded. and without "*".
The text was updated successfully, but these errors were encountered: