diff options
author | Nathan Angelacos <nangel@tetrasec.net> | 2008-07-15 18:09:55 +0000 |
---|---|---|
committer | Nathan Angelacos <nangel@tetrasec.net> | 2008-07-15 18:09:55 +0000 |
commit | 8672de2f74059934cd29376dcae985966e244396 (patch) | |
tree | b3070e7444624546aa18646572e85941d6c692d5 /openssl-ca-acf.cnf | |
parent | 7df8fe1dfb4f3aa7e68794f0b670e45758704459 (diff) | |
download | acf-openssl-8672de2f74059934cd29376dcae985966e244396.tar.bz2 acf-openssl-8672de2f74059934cd29376dcae985966e244396.tar.xz |
Fix the ca.cnf file to actually *work*
git-svn-id: svn://svn.alpinelinux.org/acf/openssl/trunk@1304 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'openssl-ca-acf.cnf')
-rw-r--r-- | openssl-ca-acf.cnf | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/openssl-ca-acf.cnf b/openssl-ca-acf.cnf index 1ffa05f..fd48c49 100644 --- a/openssl-ca-acf.cnf +++ b/openssl-ca-acf.cnf @@ -76,8 +76,7 @@ subjectAltName = optional organizationalUnitName = optional commonName = supplied emailAddress = optional -subjectAltName.0 = optional -subjectAltName.1 = optional +subjectAltName = optional #################################################################### @@ -120,13 +119,18 @@ commonName_default = emailAddress = Email Address emailAddress_max = 60 -subjectAltName = Additional CN specifier (e.g DNS:www.myotherhost.com) -subjectAltName_max = 64 -subjectAltName_default = +# This is how you add multiple values; in this case we will +# use multiple subjectAltNames + +0.subjectAltName = Alternate Name (e.g DNS:www.myotherhost.com) +0.subjectAltName_max = 64 +0.subjectAltName_default = + +1.subjectAltName = Additional Alt. Name (e.g DNS:www.mythirdhost.com) +1.subjectAltName_max = 64 +1.subjectAltName_default = + -subjectAltName.1 = Tertiary CN specifier (e.g DNS:www.mythirdhost.com) -subjectAltName_max.1 = 64 -subjectAltName_default.1 = [ req_attributes ] challengePassword = A challenge password |