From 3df786a5f5823b417aca769427fafd5674ae56fb Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Mon, 13 Dec 2021 11:44:15 +0100 Subject: [PATCH] Don't use ipv6 in garage staging cluster --- app/garage-staging/config/garage.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/garage-staging/config/garage.toml b/app/garage-staging/config/garage.toml index 2ed46c0..fffcf0c 100644 --- a/app/garage-staging/config/garage.toml +++ b/app/garage-staging/config/garage.toml @@ -5,7 +5,7 @@ data_dir = "/data" replication_mode = "3" -rpc_bind_addr = "[::]:3991" +rpc_bind_addr = "0.0.0.0:3991" rpc_secret = "{{ key "secrets/garage-staging/rpc_secret" | trimSpace }}" consul_host = "localhost:8500" @@ -15,9 +15,9 @@ bootstrap_peers = [] [s3_api] s3_region = "garage-staging" -api_bind_addr = "[::]:3990" +api_bind_addr = "0.0.0.0:3990" [s3_web] -bind_addr = "[::]:3992" +bind_addr = "0.0.0.0:3992" root_domain = ".garage-staging-web.home.adnab.me" index = "index.html"