Skip to content

Commit

Permalink
Stop Nginx socket listening on IPv6 when IPv6 is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
dsgnr committed Mar 3, 2025
1 parent acf266f commit 9acd316
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions operations/helm/charts/mimir-distributed/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Entries should include a reference to the Pull Request that introduced the chang
* [ENHANCEMENT] Set resources for smoke-test job. #10608
* [BUGFIX] Create proper in-cluster remote URLs when gateway and nginx are disabled. #10625
* [BUGFIX] Fix calculation of `mimir.siToBytes` and use floating point arithmetics. #10044
* [BUGFIX] Fix Nginx listening sockets when IPv6 is disabled on in Helm values.

## 5.6.0

Expand Down
2 changes: 2 additions & 0 deletions operations/helm/charts/mimir-distributed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3233,7 +3233,9 @@ nginx:
proxy_read_timeout 300;
server {
listen 8080;
{{- if .Values.gateway.nginx.config.enableIPv6 }}
listen [::]:8080;
{{- end }}
{{- if .Values.nginx.basicAuth.enabled }}
auth_basic "Mimir";
Expand Down

0 comments on commit 9acd316

Please sign in to comment.