mirror of
https://github.com/community-scripts/ProxmoxVED.git
synced 2026-04-05 08:54:03 -04:00
fix(ente): use LXC IP instead of localhost for MinIO S3 endpoints
Browser uploads fail with ERR_CONNECTION_REFUSED because Museum returns presigned S3 URLs with localhost:3200 — unreachable from the user's PC. Changed all three S3 bucket endpoints to use LOCAL_IP:3200.
This commit is contained in:
@@ -126,20 +126,20 @@ s3:
|
||||
b2-eu-cen:
|
||||
key: minioadmin
|
||||
secret: $MINIO_PASS
|
||||
endpoint: localhost:3200
|
||||
endpoint: ${LOCAL_IP}:3200
|
||||
region: eu-central-2
|
||||
bucket: b2-eu-cen
|
||||
wasabi-eu-central-2-v3:
|
||||
key: minioadmin
|
||||
secret: $MINIO_PASS
|
||||
endpoint: localhost:3200
|
||||
endpoint: ${LOCAL_IP}:3200
|
||||
region: eu-central-2
|
||||
bucket: wasabi-eu-central-2-v3
|
||||
compliance: false
|
||||
scw-eu-fr-v3:
|
||||
key: minioadmin
|
||||
secret: $MINIO_PASS
|
||||
endpoint: localhost:3200
|
||||
endpoint: ${LOCAL_IP}:3200
|
||||
region: eu-central-2
|
||||
bucket: scw-eu-fr-v3
|
||||
|
||||
|
||||
Reference in New Issue
Block a user