mirror of https://github.com/sipwise/kamailio.git
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.
59 lines
1.1 KiB
59 lines
1.1 KiB
#
|
|
# Default configuration to use when one
|
|
# is not provided on the command line.
|
|
#
|
|
[ ca ]
|
|
default_ca = CA_request
|
|
|
|
|
|
#
|
|
# Default location of directories and
|
|
# files needed to generate certificates.
|
|
#
|
|
[ CA_request ]
|
|
dir = ./rootCA
|
|
database = $dir/index.txt
|
|
new_certs_dir = $dir/certs
|
|
|
|
certificate = $dir/cacert.pem
|
|
serial = $dir/serial
|
|
private_key = $dir/private/cakey.pem
|
|
|
|
|
|
#
|
|
# Default expiration and encryption
|
|
# policies for certificates.
|
|
#
|
|
default_days = 365
|
|
default_crl_days = 1825
|
|
default_md = sha1
|
|
|
|
policy = req_policy
|
|
|
|
|
|
#
|
|
# Information to be moved from
|
|
# request to the certificate
|
|
#
|
|
nameopt = ca_default
|
|
certopt = ca_default
|
|
copy_extensions = copy
|
|
x509_extensions = cert_extensions
|
|
|
|
|
|
#
|
|
# The default policy to use when
|
|
# generating the certificate.
|
|
#
|
|
[ req_policy ]
|
|
countryName = supplied
|
|
stateOrProvinceName = optional
|
|
organizationName = supplied
|
|
organizationalUnitName = optional
|
|
commonName = supplied
|
|
emailAddress = supplied
|
|
|
|
[ cert_extensions ]
|
|
basicConstraints = CA:false
|
|
|