Fake Mirrors
    Preparing search index...

    Interface MinioStorageConfig

    Configuration for a MinIO storage.

    interface MinioStorageConfig {
        STORAGE_ACCESS_KEY: string;
        STORAGE_BUCKET_NAME: string;
        STORAGE_ENDPOINT: string;
        STORAGE_PORT: number;
        STORAGE_SECRET_KEY: string;
        STORAGE_USE_SSL: boolean;
        [key: string]: string | number | boolean;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: string | number | boolean
    STORAGE_ACCESS_KEY: string

    MinIO access key (username).

    STORAGE_BUCKET_NAME: string

    Name of the bucket to use for storage operations.

    STORAGE_ENDPOINT: string

    MinIO server endpoint.

    STORAGE_PORT: number

    MinIO server port.

    STORAGE_SECRET_KEY: string

    MinIO secret key (password).

    STORAGE_USE_SSL: boolean

    Whether to use SSL/TLS for the connection.