diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/cb.conf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/etc/cb.conf b/etc/cb.conf new file mode 100644 index 0000000..47ae16a --- /dev/null +++ b/etc/cb.conf @@ -0,0 +1,19 @@ +#!/bin/bash + +# where do we belong? (must match the setting of the ca) +subject_prefix='/C=DE/ST=Thuringia/L=Jena/O=Eckner/OU=Net' + +# ignore these hosts +ignore_hosts=('localhost') + +# where should the certificates be requested? +ca_host='user@ca.example.com' + +# request new key/cert afther this many days +key_min_duration=15 + +# which user owns the certificates (not root) +certificate_user='http' + +# directory of the webserver - must be reachable via https://$host/.csr/ +webserver_dir='/srv/http/httpdocs/.csr' |