“SSL localhost” Réponses codées

SSL localhost

mkcert -install

mkcert localhost.com "*.localhost.com" localhost.test localhost 127.0.0.1 ::1

# key.pem
cat localhost.com+5-key.pem

# cert.pem
cat localhost.com+5.pem
Injury

Comment obtenir un certificat SSL gratuit de LetSencrypt pour local

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")
Handsome Hedgehog

Réponses similaires à “SSL localhost”

Questions similaires à “SSL localhost”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code