/etc/opensips/tls/request.conf is in opensips-tlsmgm-module 2.2.2-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | #
# 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
|