forked from Deuxfleurs/infrastructure
Don't use ipv6 in garage staging cluster
This commit is contained in:
parent
50a09980c5
commit
3df786a5f5
1 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ data_dir = "/data"
|
||||||
|
|
||||||
replication_mode = "3"
|
replication_mode = "3"
|
||||||
|
|
||||||
rpc_bind_addr = "[::]:3991"
|
rpc_bind_addr = "0.0.0.0:3991"
|
||||||
rpc_secret = "{{ key "secrets/garage-staging/rpc_secret" | trimSpace }}"
|
rpc_secret = "{{ key "secrets/garage-staging/rpc_secret" | trimSpace }}"
|
||||||
|
|
||||||
consul_host = "localhost:8500"
|
consul_host = "localhost:8500"
|
||||||
|
@ -15,9 +15,9 @@ bootstrap_peers = []
|
||||||
|
|
||||||
[s3_api]
|
[s3_api]
|
||||||
s3_region = "garage-staging"
|
s3_region = "garage-staging"
|
||||||
api_bind_addr = "[::]:3990"
|
api_bind_addr = "0.0.0.0:3990"
|
||||||
|
|
||||||
[s3_web]
|
[s3_web]
|
||||||
bind_addr = "[::]:3992"
|
bind_addr = "0.0.0.0:3992"
|
||||||
root_domain = ".garage-staging-web.home.adnab.me"
|
root_domain = ".garage-staging-web.home.adnab.me"
|
||||||
index = "index.html"
|
index = "index.html"
|
||||||
|
|
Loading…
Reference in a new issue