30 lines
694 B
TOML
30 lines
694 B
TOML
# There are many parameters
|
|
# https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/
|
|
|
|
metadata_dir = "/app/data/garage/meta"
|
|
data_dir = "/app/data/garage/data"
|
|
db_engine = "sqlite"
|
|
|
|
replication_factor = 1
|
|
|
|
[s3_api]
|
|
s3_region = "garage"
|
|
api_bind_addr = "[::]:3900"
|
|
root_domain = ".s3.garage.localhost"
|
|
|
|
rpc_bind_addr = "[::]:3901"
|
|
rpc_public_addr = "127.0.0.1:3901"
|
|
rpc_secret = "$(openssl rand -hex 32)"
|
|
|
|
[s3_web]
|
|
bind_addr = "[::]:3902"
|
|
root_domain = ".web.garage.localhost"
|
|
index = "index.html"
|
|
|
|
# [k2v_api]
|
|
# api_bind_addr = "[::]:3904"
|
|
|
|
# [admin]
|
|
# api_bind_addr = "[::]:3903"
|
|
# admin_token = "$(openssl rand -base64 32)"
|
|
# metrics_token = "$(openssl rand -base64 32)" |