0cb807a555
code is super ugly right now.. please don't judge
55 lines
1.1 KiB
INI
55 lines
1.1 KiB
INI
[ ca ]
|
|
default_ca = CA_default
|
|
|
|
[ CA_default ]
|
|
dir = ./cert/
|
|
certs = $dir
|
|
crl_dir = $dir/crl
|
|
database = db/index.txt
|
|
new_certs_dir = $dir
|
|
certificate = $dir/server.pem
|
|
serial = db/serial
|
|
crl = $dir/crl.pem
|
|
private_key = $dir/server.key
|
|
RANDFILE = $dir/.rand
|
|
name_opt = ca_default
|
|
cert_opt = ca_default
|
|
default_days = 6000
|
|
default_crl_days = 30
|
|
default_md = sha256
|
|
preserve = no
|
|
policy = policy_match
|
|
|
|
[ policy_match ]
|
|
countryName = match
|
|
stateOrProvinceName = match
|
|
organizationName = match
|
|
organizationalUnitName = optional
|
|
commonName = supplied
|
|
emailAddress = optional
|
|
|
|
[ policy_anything ]
|
|
countryName = optional
|
|
stateOrProvinceName = optional
|
|
localityName = optional
|
|
organizationName = optional
|
|
organizationalUnitName = optional
|
|
commonName = supplied
|
|
emailAddress = optional
|
|
|
|
[ req ]
|
|
prompt = no
|
|
distinguished_name = server
|
|
default_bits = 2048
|
|
input_password = whatever2020
|
|
output_password = whatever2020
|
|
|
|
[server]
|
|
countryName = AT
|
|
stateOrProvinceName = Vienna
|
|
localityName = Vienna
|
|
organizationName = hokify.com
|
|
emailAddress = info@hokify.com
|
|
commonName = "hokify GmbH"
|
|
|