CSR

Aus Meine Wiki
Zur Navigation springen Zur Suche springen
How to generate a wildcard cert CSR with a config file for OpenSSL
So generieren Sie mit für OpenSSL eine CSR für ein Wildcard-Zertifikat mit Konfigurationsdatei


First though, the csr.conf file looks like this
Zunächst sieht die Datei csr.conf so aus


  [ req ]
  default_bits       = 4096
  default_md         = sha512
  default_keyfile    = domain.com.key
  prompt             = no
  encrypt_key        = no
  distinguished_name = req_distinguished_name
  # distinguished_name
  [ req_distinguished_name ]
  countryName            = "DE"                     # C=
  localityName           = "Freiburg"               # L=
  organizationName       = "My Company"             # O=
  organizationalUnitName = "Departement"            # OU=
  commonName             = "*.domain.com"           # CN=
  emailAddress           = "me@domain.com"          # CN/emailAddress=


The command snippet
Das Befehl-Snippet


   $ mkdir domain.com.ssl && cd domain.com.ssl
   $ openssl genrsa -out ./domain.com.key 2048
   $ openssl req -config csr.conf -new  -key ./domain.com.key -out ./domain.com.csr -verbose