This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OpenSSL configuration to generate a new key with signing requst for a x509v3 | |
# multidomain certificate | |
# | |
# openssl req -config bla.cnf -new | tee csr.pem | |
# or | |
# openssl req -config bla.cnf -new -out csr.pem | |
[ req ] | |
default_bits = 4096 | |
default_md = sha512 | |
default_keyfile = key.pem |