Quote:
Originally Posted by kovidgoyal
caliredb uses python which in turn uses openssl.
|
OK, that's it - THANK YOU.
If someone is interested, using docker with linuxserver's calibre
Code:
# Get all info on domain:
echo | openssl s_client -servername 127.0.0.1 -connect 127.0.0.1:8081
# Up, running, only certifacate missing
# Any environment?
env | grep -i ssl
# None for me
# SSL Config Directory
openssl version -d
# is /usr/lib/ssl, there
# /usr/lib/ssl/certs -> /etc/ssl/certs
# get the subject hash of the cerficate
openssl x509 -subject_hash -in myRoot.crt | head -1
# copy it, "normally" file with name, symlink with hash, easy going here:
cp myRoot.crt /etc/ssl/certs/[subject hash].0
# Check again with openssl, calibredb connects flawlessly
# I mapped the file in my compose.yaml