Hello everyone, recently we have updated our openvidu single instance from 3.0.0 to 3.3.0 and so far most of things are working except for managing the minio instance. We noticed two issues. (1) The minio console is now way different from how it was and for instance it is now impossible to create app access keys so that our backend apps (minio client instance on nodejs) can for example generate presigned object urls. (2) Speaking of which, we created access key before in openvidu 3.0.0. and it still works but for some reason when we create minio client instance on nodejs like this:
Error generating URL for LargeChatArea4-2025-07-01T193202-RM_sDkM5SFQD6ry.mp4: Error: write EPROTO 00DF980002000000:error:0A00010B:SSL routines:ssl3_get_record:wrong version number:../deps/openssl/openssl/ssl/record/ssl3_record.c:355: at WriteWrap.onWriteComplete [as oncomplete] (node:internal/stream_base_commons:94:16) {
errno: -100,
code: 'EPROTO',
syscall: 'write'
}
but when we set useSSL to false, it generates the link correctly but over http instead of https. Making https via code or manually changing makes the link unusable. The page just opens with the message that server responded with invalid response.
The nodejs code uses minio 8.0.5 package.
Clarification on how to use the minio dashboard and generating download links with latest version would be really appreciated.
Yes, I think this is a regression, to fix a wrong redirection we removed the SSL from the minio exposed server. Let me see what you need to add to your caddy.yaml config file to enable it again.
@cruizba, thank you for your attention to this matter. I will be waiting for your response. At the moment our caddy.yaml is the default config that comes after installing the openvidu. We did clean installation.