Hi everyone,
I was reading through the (site.letsencrypt.org/docs/certificates-for-localhost/) and understand why certs can’t be issued for localhost
. I’m working on a web app where HTTPS is required to test features like secure cookies and service workers.
I’ve generated a self-signed cert using the openssl
command from the docs:
openssl req -x509 -out localhost.crt -keyout localhost.key \
-newkey rsa:2048 -nodes -sha256 \
-subj '/CN=localhost' -extensions EXT -config <( \
printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
The cert installs fine on my system, but I still get browser warnings (especially in Chrome). I’ve added the cert to my macOS keychain and marked it as trusted, but the warning persists.
Has anyone managed to get Chrome or other browsers to fully trust a self-signed cert on localhost
? Or is using a local CA (like minica
) the only reliable way?
Would appreciate any tips or clarification—this has been tricky to get right.
Thanks!