I am trying to install a custom ssl certificate in FreeBSD, so far I tried
Based on this https://blog.socruel.nu/freebsd/how-to-install-private-CA-on-freebsd.html
But when trying to test with
Code:
cp root_ca.cert /etc/ssl/certs/root_ca.crt
chmod 0644 /etc/ssl/certs/root_ca.crt
chown root:wheel /etc/ssl/certs/root_ca.crt
HASH=$(openssl x509 -noout -hash -in /etc/ssl/certs/root_ca.crt)
ln -s root_ca /etc/ssl/certs/$HASH
But when trying to test with
fecth -o /dev/stdout https://test.homeserver.intranet, it gives me ssl error, have already confirmed that the certificate is working, installing it in firefox and visiting the site with a successful delivery of the page.