View Single Post
Old 11-14-2025, 04:07 PM   #3
Venia Legendi
Member
Venia Legendi began at the beginning.
 
Venia Legendi's Avatar
 
Posts: 17
Karma: 10
Join Date: Apr 2013
Device: lots of, frequently changing
Quote:
Originally Posted by kovidgoyal View Post
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
Venia Legendi is offline   Reply With Quote