rzrbld / adminio-api

simple admin API for min.io (minio) s3 server
MIT License
23 stars 8 forks source link

Self signed certificates #20

Closed mr-manuel closed 2 years ago

mr-manuel commented 3 years ago

Hello,

would it be possible to add a switch to ignore SSL/TLS verification for MinIO server or a folder where the root CA can be placed, like in the MinIO docker containers?

If this is already possible, can you please add this in documentation?

Edit: I‘m using the latest docker container

rzrbld commented 3 years ago

Hi @mr-manuel by now there is no such functionality. In a proper way to achieve this, you need to add your self-signed ca to trusted certs in docker image. Just like in issue #17 . It kind a looks like this:

...
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
COPY ./mycert.crt /usr/local/share/ca-certificates/mycert.crt
RUN update-ca-certificates
...
mr-manuel commented 3 years ago

Ok, thank you. Would it be possible to add this for a future release?

rzrbld commented 3 years ago

ok, i will look how to implement this

mr-manuel commented 3 years ago

Thank you very much!

BuJo commented 2 years ago

I've implemented something like this in #25 and can probably be closed on the next release.

rzrbld commented 2 years ago

Thanks to @BuJo this functionality available in v1.84