S3: removed unnecessary gateways

This commit is contained in:
Filippo Berto 2023-08-15 11:57:26 +02:00
parent a02853e64f
commit f4b2644bd1
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
9 changed files with 60 additions and 62 deletions

View file

@ -4,6 +4,7 @@
age.secrets.garage_rpc_secret = { file = ../../secrets/garage_rpc_secret.age; owner = "garage"; };
networking.firewall.interfaces."ztmjfdwjkp".allowedTCPPorts = [
3900
3901
];
@ -19,17 +20,17 @@
settings = {
replication_mode = 2;
rpc_secret_file = config.age.secrets.garage_rpc_secret.path;
rpc_bind_addr = "[::]:3901";
rpc_bind_addr = "0.0.0.0:3901";
bootstrap_peers = [ ];
s3_api = {
api_bind_addr = "[::]:3900";
api_bind_addr = "0.0.0.0:3900";
s3_region = "garage";
root_domain = ".s3.bertof.net";
};
s3_web = {
bind_addr = "[::]:3902";
bind_addr = "0.0.0.0:3902";
root_domain = ".web.bertof.net";
};