34 lines
786 B
Django/Jinja
34 lines
786 B
Django/Jinja
# simple config for burp_ca
|
|
|
|
RANDFILE = /dev/urandom
|
|
CA_DIR = {{ burp_ca_dir }}
|
|
|
|
|
|
[ ca ]
|
|
dir = $ENV::CA_DIR
|
|
database = $dir/index.txt
|
|
serial = $dir/serial.txt
|
|
certs = $dir/certs
|
|
new_certs_dir = $dir/newcerts
|
|
crlnumber = $dir/crlnumber.txt
|
|
|
|
unique_subject = no
|
|
|
|
default_md = sha256
|
|
default_days = 7300
|
|
default_crl_days = 7300
|
|
|
|
#????
|
|
name_opt = ca_default
|
|
cert_opt = ca_default
|
|
|
|
x509_extensions = usr_cert
|
|
copy_extensions = copy
|
|
policy = policy_anything
|
|
|
|
[ usr_cert ]
|
|
basicConstraints = CA:FALSE
|
|
|
|
[ policy_anything ]
|
|
commonName = supplied
|