feat(backend,helm)!: bind to IPv6 wildcard by default for dual-stack support

* fix: Enable Garage UI to work on IPv6-based clusters.

* fix: building on nonstandard-uid machines.

* fix: Enable Garage UI to work on IPv6-based clusters.
This commit is contained in:
Alistair Young
2026-05-31 04:39:04 -05:00
committed by GitHub
parent c30400cf84
commit 5427758eaa
8 changed files with 26 additions and 9 deletions
+10
View File
@@ -127,6 +127,16 @@ garage:
region: "garage"
```
Server bind host is configured by `server.host` (default: `::`). IPv6 literals like `::` and `::1` are supported.
```yaml
server:
host: "::" # IPv6 wildcard (dual-stack-preferred)
port: 8080
```
If your environment needs explicit IPv4-only binding, set `server.host: "0.0.0.0"`.
See [config.example.yaml](config.example.yaml) for all options including authentication, CORS, and logging.
### Environment Variables