fix(core): Fix endpoint address from localhost to 127.0.0.1 for better compatibility in Smarts3.getS3Descriptor

This commit is contained in:
2024-11-06 17:01:20 +01:00
parent dfb77842d3
commit 2b908c3e4b
3 changed files with 7 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ export class Smarts3 {
return {
accessKey: 'S3RVER',
accessSecret: 'S3RVER',
endpoint: 'localhost',
endpoint: '127.0.0.1',
port: this.options.port,
useSsl: false,
};