I have deployed standalone Minio in a server. I also have my backend running in it. So the enpoints would be something like this:
Minio URL: https://example.com/minio
Backend URL: https://example.com/api
When I tried to setup Minio configuration in my node project, I get error. Can you help me in setting this up?
Here is my code:
let client = new Minio.Client({
endPoint: 'example.com/minio',
useSSL: true,
accessKey: 'xxxxx',
secretKey: 'xxxxx'
})