I wan to use minio alternative s3 #3868
Answered
by
Julien-R44
magic-thomas
asked this question in
Help
-
hi I have storage server IP , minio access key, minio scret key only. How can I change the driver.ts for minio package ? // driver.ts s3: {
driver: 's3',
visibility: 'private',
key: Env.get('AWS_ACCESS_KEY'),
secret: Env.get('AWS_SECRET_KEY'),
region: Env.get('S3_REGION'),
bucket: Env.get('S3_BUCKET'),
}, |
Beta Was this translation helpful? Give feedback.
Answered by
Julien-R44
Aug 17, 2022
Replies: 1 comment 3 replies
-
The only thing you are missing, to make MinIO work, is this property: ...
s3: {
forcePathStyle: true, // 👈 Don't forget this !
key: Env.get('S3_KEY'),
secret: Env.get('S3_SECRET'),
region: Env.get('S3_REGION'),
bucket: Env.get('S3_BUCKET'),
endpoint: Env.get('S3_ENDPOINT'),
}
... |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Julien-R44
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The only thing you are missing, to make MinIO work, is this property: