This is for a .dev domain name
I know how to install a wildcard certificate on a domain name with Let's encrypt
I install Certbot and run this command
sudo certbot certonly --manual --preferred-challenges dns --server https://acme-v02.api.letsencrypt.org/directory --manual-public-ip-logging-ok -d '*.example.dev' -d example.dev
The SSL certificate is intalled correctly I can see *.example.dev in the certificate but the connection is not "Secure" and all .dev domain name needs to have a valide SSL certificate to access the website.
How can I resolve this issue?
Thanks