twellck commented on issue #12828:
URL: https://github.com/apache/apisix/issues/12828#issuecomment-3679965470
## Temporary Workaround
For anyone facing this issue, you can temporarily fix it by manually
injecting the missing IPv6 listener.
**If using `config.yaml`**
Add the snippet to `nginx_config`:
```yaml
nginx_config:
http_server_configuration_snippet: |
# Manually bind IPv6 for the proxy protocol port (See
https://github.com/apache/apisix/issues/12828)
listen [::]:9443 ssl default_server proxy_protocol;
```
**If using the official apisix Helm Chart (`values.yaml`)**
Set the snippet under `nginx.configurationSnippet.httpSrv`:
```yaml
nginx:
configurationSnippet:
httpSrv: |
# Manually bind IPv6 for the proxy protocol port (See
https://github.com/apache/apisix/issues/12828)
listen [::]:9443 ssl default_server proxy_protocol;
```
_(Replace `9443` with your specific configured `listen_https_port`)._
This forces Nginx to bind the IPv6 address for that port alongside the
auto-generated IPv4 binding.
--
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]