Both deploy/examples configs now document the new server.grpc_addr and [web] settings introduced with the metacrypt-web separation. The Docker example uses the compose service name (metacrypt:9443) as vault_grpc. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
719 B
TOML
30 lines
719 B
TOML
# Metacrypt configuration for Docker deployment.
|
|
# Place this file at /srv/metacrypt/metacrypt.toml inside the container volume.
|
|
|
|
[server]
|
|
listen_addr = ":8443"
|
|
grpc_addr = ":9443"
|
|
tls_cert = "/srv/metacrypt/certs/server.crt"
|
|
tls_key = "/srv/metacrypt/certs/server.key"
|
|
|
|
[web]
|
|
# metacrypt-web connects to the vault container by its compose service name.
|
|
listen_addr = ":8080"
|
|
vault_grpc = "metacrypt:9443"
|
|
vault_ca_cert = "/srv/metacrypt/certs/server.crt"
|
|
|
|
[database]
|
|
path = "/srv/metacrypt/metacrypt.db"
|
|
|
|
[mcias]
|
|
server_url = "https://mcias.metacircular.net:8443"
|
|
# ca_cert = "/srv/metacrypt/certs/mcias-ca.crt"
|
|
|
|
[seal]
|
|
# argon2_time = 3
|
|
# argon2_memory = 131072
|
|
# argon2_threads = 4
|
|
|
|
[log]
|
|
level = "info"
|