Skip to content

File Storage (MinIO)

The OpenTalk Controller uses MinIO as its object storage.

Configuration

The section in the configuration file is called minio.

Field Type Required Default value Description
uri string yes - The URI address where the MinIO server can be reached
bucket string yes - The default bucket name for object storage
access_key string yes - The unique username for the MinIO user
secret_key string yes - The password corresponding to the access key

Examples

Default Setup

[minio]
uri = "http://localhost:9555"
bucket = "controller"
access_key = "minioadmin"
secret_key = "minioadmin"