kingluo commented on issue #9049:
URL: https://github.com/apache/apisix/issues/9049#issuecomment-1506487973
@jinjianming
In decoupled deployment mode, CP only provides https, for access by DP. But
with `proxy_buffering on;` (by default), the SSL response (chunked watch result
blocks) will be buffered and finally timeout.
We should fix it later. But the temporary solution is:
`config.yaml`
```yaml
nginx_config:
http_configuration_snippet: |
proxy_buffering off;
```
Similar to this issue, which proxies the etcd via APISIX:
https://github.com/apache/apisix/issues/9263#issuecomment-1506475658
--
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]