We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9a0e5e commit 3470d0fCopy full SHA for 3470d0f
src/common/modules/s3/s3.service.ts
@@ -11,6 +11,7 @@ export class S3Service {
11
#S3PublicUrl = this.configService.get<string>('S3_PUBLIC_URL');
12
#bucketName = this.configService.get<string>('S3_BUCKET_NAME');
13
private readonly client = new S3Client({
14
+ endpoint: this.configService.get<string>('S3_ENDPOINT'),
15
region: this.configService.get<string>('S3_REGION'),
16
credentials: {
17
accessKeyId: this.configService.get<string>('S3_ACCESS_KEY'),
0 commit comments