-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtestssl.conf
32 lines (28 loc) · 1.32 KB
/
testssl.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[ ca ]
default_ca = CA_default # The default ca section
[ CA_default ]
dir = ./ # top dir
certs = $dir/certs
crl_dir = $dir/crl
database = $dir/index.txt # index file.
new_certs_dir = $dir/newcerts # new certs dir
certificate = $dir/certs/ca.crt # The CA cert
serial = $dir/serial # serial no file
private_key = $dir/private/ca.key # CA private key
RANDFILE = $dir/private/.rand # random number file
crl_dir = $dir/crl
default_days = 365 # how long to certify for
default_crl_days= 30 # how long before next CRL
default_md = md5 # md to use
policy = policy_any # default policy
email_in_dn = no # Don't add the email into cert DN
name_opt = ca_default # Subject name display option
cert_opt = ca_default # Certificate display option
copy_extensions = none # Don't copy extensions from request
[ policy_any ]
countryName = supplied
stateOrProvinceName = optional
organizationName = optional
organizationalUnitName = optional
commonName = optinal
emailAddress = optional