From f79e2204e704470e471872eebff6cce61800a3ef Mon Sep 17 00:00:00 2001 From: Ash Brener Date: Wed, 28 Jan 2026 10:23:58 +0200 Subject: [PATCH] docs: use AWS S3 as primary example in workspace-sync --- docs/gateway/workspace-sync.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/gateway/workspace-sync.md b/docs/gateway/workspace-sync.md index 98ce24cbb..82484cf42 100644 --- a/docs/gateway/workspace-sync.md +++ b/docs/gateway/workspace-sync.md @@ -104,7 +104,7 @@ It does NOT wake the bot or trigger any LLM calls - it's just file synchronizati } ``` -**S3/R2/Minio:** +**S3 (AWS, R2, Minio):** ```json5 { @@ -113,12 +113,12 @@ It does NOT wake the bot or trigger any LLM calls - it's just file synchronizati provider: "s3", remotePath: "moltbot-sync", // path within bucket s3: { + // AWS S3: https://s3..amazonaws.com (or omit for default) // Cloudflare R2: https://.r2.cloudflarestorage.com - // AWS S3: https://s3..amazonaws.com // Minio: https://your-minio-host:9000 - endpoint: "https://abc123def456.r2.cloudflarestorage.com", + endpoint: "https://s3.us-east-1.amazonaws.com", bucket: "your-bucket", - region: "auto" // "auto" for R2, or specific region for AWS + region: "us-east-1" // accessKeyId and secretAccessKey via env vars recommended } }