Is it possible to use a self signed certificate with the S3 implementation? #1216
Answered
by
Xuanwo
vikramaditya91
asked this question in
Q&A
-
Hello I am trying to connect to a Minio endpoint with the
It seems that the I could not figure out how a self signed certificate could be passed to the client or if I could use my own client built like this Client::builder()
// ...
.add_root_certificate(config.server_certificate)
.danger_accept_invalid_certs(true) Does someone know if there is any workaround I could use? Should this be a new feature request? |
Beta Was this translation helpful? Give feedback.
Answered by
Xuanwo
Apr 16, 2025
Replies: 1 comment 6 replies
-
cc @Xuanwo Do opendal supports this? |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In my opinion, the best approach is to install your self-signed certificate into the system trust store so that all your local tools can work well with the certificate. This will enhance the security of your connection to the MinIO server, ensuring that you are connecting to the correct instance.
Although it's possible for us to implement this, I really don't think using
danger_accept_invalid_certs
is a valid use case.