diff options
-rw-r--r-- | server/lib/object-storage/shared/object-storage-helpers.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/server/lib/object-storage/shared/object-storage-helpers.ts b/server/lib/object-storage/shared/object-storage-helpers.ts index e23216907..b53b94b96 100644 --- a/server/lib/object-storage/shared/object-storage-helpers.ts +++ b/server/lib/object-storage/shared/object-storage-helpers.ts | |||
@@ -146,7 +146,8 @@ async function objectStoragePut (options: { | |||
146 | const command = new PutObjectCommand({ | 146 | const command = new PutObjectCommand({ |
147 | Bucket: bucketInfo.BUCKET_NAME, | 147 | Bucket: bucketInfo.BUCKET_NAME, |
148 | Key: buildKey(objectStorageKey, bucketInfo), | 148 | Key: buildKey(objectStorageKey, bucketInfo), |
149 | Body: content | 149 | Body: content, |
150 | ACL: 'public-read' | ||
150 | }) | 151 | }) |
151 | 152 | ||
152 | await getClient().send(command) | 153 | await getClient().send(command) |
@@ -168,7 +169,8 @@ async function multiPartUpload (options: { | |||
168 | 169 | ||
169 | const createMultipartCommand = new CreateMultipartUploadCommand({ | 170 | const createMultipartCommand = new CreateMultipartUploadCommand({ |
170 | Bucket: bucketInfo.BUCKET_NAME, | 171 | Bucket: bucketInfo.BUCKET_NAME, |
171 | Key: key | 172 | Key: key, |
173 | ACL: 'public-read' | ||
172 | }) | 174 | }) |
173 | const createResponse = await s3Client.send(createMultipartCommand) | 175 | const createResponse = await s3Client.send(createMultipartCommand) |
174 | 176 | ||