I am using a self-signed certificate from OpenSSL on localhost with the URL https://localhost.com:3000 Chrome is complaining about an insecure connection. Your connection to this site is not secure This is my openssl.conf
[req]
default_bits = 2048
distinguished_name = dn
prompt = no
[dn]
C="US"
ST="CA"
L="Venice Beach"
O="YIDAS"
OU="Service"
emailAddress="[email protected]"
CN="localhost.com"
[req_ext]
subjectAltName = DNS:127.0.0.1
[alt_names]
DNS.1=localhost.com
DNS.2=$HOSTNAME
IP.1=127.0.0.1
[v3_req]
keyUsage = critical, digitalSignature, keyAgreement
extendedKeyUsage = serverAuth
subjectAltName = DNS:127.0.0.1
Am I missing something?
question from:https://stackoverflow.com/questions/65888653/ssl-insecure-connection