Skip to content

Rclone Config

Chelsea edited this page Nov 24, 2023 · 3 revisions

Home > Development > Getting Started > Rclone Config


Rclone Config

Generate rclone.conf:

cp .config/rclone.conf.example ~/.config/rclone/rclone.conf

Example:

    [s3]

    type = s3
    provider = AWS
    env_auth = true

    [minio]

    type = s3
    provider = Minio
    env_auth = true
    access_key_id = pcc
    secret_access_key = <LOCAL_MINIO_PASSWORD>
    endpoint = http://localhost:9000
Clone this wiki locally