This shows you the differences between two versions of the page.
| — |
howtos:generate_a_self-signed_certificate_for_localhost [d/m/Y H:i] (current) domingo created |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | <code> | ||
| + | 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") | ||
| + | </code> | ||