From 62b6f7f9acf30317989d8f344350e40bad59ef9d Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 21 Jul 2025 20:44:19 -0600 Subject: [PATCH] Fix S3 configuration - set are_local_buckets to true MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed are_local_buckets from false to true (required for external S3) - Simplified S3 configuration to only use b2-eu-cen bucket - Removed unnecessary replication buckets for single bucket setup This aligns with Ente's documentation where are_local_buckets=true is used for external S3 services like Wasabi. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- start.sh | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/start.sh b/start.sh index d6f3ecc..f5a88e7 100644 --- a/start.sh +++ b/start.sh @@ -121,29 +121,13 @@ cors: # S3 storage configuration following Ente's format s3: - are_local_buckets: false - use_path_style_urls: false - # Hot storage bucket (primary) + are_local_buckets: true b2-eu-cen: - key: "${S3_ACCESS_KEY}" - secret: "${S3_SECRET_KEY}" - endpoint: "${S3_ENDPOINT}" - region: "${S3_REGION}" - bucket: "${S3_BUCKET}" - # Replication buckets (using same bucket for simplicity) - wasabi-eu-central-2-v3: - key: "${S3_ACCESS_KEY}" - secret: "${S3_SECRET_KEY}" - endpoint: "${S3_ENDPOINT}" - region: "${S3_REGION}" - bucket: "${S3_BUCKET}" - compliance: true - scw-eu-fr-v3: - key: "${S3_ACCESS_KEY}" - secret: "${S3_SECRET_KEY}" - endpoint: "${S3_ENDPOINT}" - region: "${S3_REGION}" - bucket: "${S3_BUCKET}" + key: ${S3_ACCESS_KEY} + secret: ${S3_SECRET_KEY} + endpoint: ${S3_ENDPOINT} + region: ${S3_REGION} + bucket: ${S3_BUCKET} # Email settings email: