You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.8 KiB
98 lines
2.8 KiB
5 years ago
|
[ ca ]
|
||
|
default_ca = CA_default
|
||
|
|
||
|
[ CA_default ]
|
||
|
# Directory and file locations.
|
||
|
dir = {{ pki_root_dir }}/etc/ssl/root/
|
||
|
certs = $dir
|
||
|
crl_dir = $dir
|
||
|
new_certs_dir = $dir
|
||
|
database = $dir/index.txt
|
||
|
serial = $dir/serial
|
||
|
RANDFILE = {{ pki_root_dir }}/data/rand
|
||
|
|
||
|
crlnumber = $dir/crlnumber
|
||
|
crl = $dir/crl.pem
|
||
|
crl_extensions = crl_ext
|
||
|
default_crl_days = 30
|
||
|
|
||
|
default_md = sha256
|
||
|
|
||
|
name_opt = ca_default
|
||
|
cert_opt = ca_default
|
||
|
default_days = 375
|
||
|
preserve = no
|
||
|
policy = policy_loose
|
||
|
|
||
|
[ policy_loose ]
|
||
|
countryName = optional
|
||
|
stateOrProvinceName = optional
|
||
|
localityName = optional
|
||
|
organizationName = optional
|
||
|
organizationalUnitName = optional
|
||
|
commonName = supplied
|
||
|
emailAddress = optional
|
||
|
|
||
|
[ req ]
|
||
|
default_bits = 2048
|
||
|
distinguished_name = req_distinguished_name
|
||
|
string_mask = utf8only
|
||
|
default_md = sha256
|
||
|
x509_extensions = v3_ca
|
||
|
|
||
|
[ req_distinguished_name ]
|
||
|
countryName = Country Name (2 letter code)
|
||
|
stateOrProvinceName = State or Province Name
|
||
|
localityName = Locality Name
|
||
|
0.organizationName = Organization Name
|
||
|
organizationalUnitName = Organizational Unit Name
|
||
|
commonName = Common Name
|
||
|
emailAddress = Email Address
|
||
|
|
||
|
countryName_default = GB
|
||
|
stateOrProvinceName_default = England
|
||
|
localityName_default =
|
||
|
0.organizationName_default = Alice Ltd
|
||
|
organizationalUnitName_default =
|
||
|
emailAddress_default =
|
||
|
|
||
|
[ v3_ca ]
|
||
|
subjectKeyIdentifier = hash
|
||
|
authorityKeyIdentifier = keyid:always,issuer
|
||
|
basicConstraints = critical, CA:true
|
||
|
keyUsage = critical, digitalSignature, cRLSign, keyCertSign
|
||
|
|
||
|
[ v3_intermediate_ca ]
|
||
|
subjectKeyIdentifier = hash
|
||
|
authorityKeyIdentifier = keyid:always,issuer
|
||
|
basicConstraints = critical, CA:true, pathlen:0
|
||
|
keyUsage = critical, digitalSignature, cRLSign, keyCertSign
|
||
|
|
||
|
[ usr_cert ]
|
||
|
basicConstraints = CA:FALSE
|
||
|
nsCertType = client, email
|
||
|
nsComment = "OpenSSL Generated Client Certificate"
|
||
|
subjectKeyIdentifier = hash
|
||
|
authorityKeyIdentifier = keyid,issuer
|
||
|
keyUsage = critical, nonRepudiation, digitalSignature, keyEncipherment
|
||
|
extendedKeyUsage = clientAuth, emailProtection
|
||
|
|
||
|
[ server_cert ]
|
||
|
basicConstraints = CA:FALSE
|
||
|
nsCertType = server
|
||
|
nsComment = "OpenSSL Generated Server Certificate"
|
||
|
subjectKeyIdentifier = hash
|
||
|
authorityKeyIdentifier = keyid,issuer:always
|
||
|
keyUsage = critical, digitalSignature, keyEncipherment
|
||
|
extendedKeyUsage = serverAuth
|
||
|
|
||
|
[ crl_ext ]
|
||
|
authorityKeyIdentifier=keyid:always
|
||
|
|
||
|
[ ocsp ]
|
||
|
basicConstraints = CA:FALSE
|
||
|
subjectKeyIdentifier = hash
|
||
|
authorityKeyIdentifier = keyid,issuer
|
||
|
keyUsage = critical, digitalSignature
|
||
|
extendedKeyUsage = critical, OCSPSigning
|