githubcdr commented on issue #12195:
URL: https://github.com/apache/apisix/issues/12195#issuecomment-2858514184
Thanks for the reply, after spending some more time I also came to this
solution.
Next challenge is to make this work with ingress controller annotations;
So far none of these options provide a working solution, I think the ":"
makes apisix confused..
```yaml
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: podinfo
namespace: podinfo
annotations:
k8s.apisix.apache.org/enable-response-rewrite: "true"
k8s.apisix.apache.org/response-rewrite-set-header: "alt-svc: h3=:443;"
# or
k8s.apisix.apache.org/response-rewrite-set-header: 'alt-svc: h3=":443";
ma=6789'
# OR
k8s.apisix.apache.org/response-rewrite-set-header: "alt-svc: h3=\:443;"
```
It adds the header but with value "h3=\
Could be a bug?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]