Fix S3 configuration - set are_local_buckets to true
- 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 <noreply@anthropic.com>
This commit is contained in:
28
start.sh
28
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:
|
||||
|
Reference in New Issue
Block a user