blob: 47ae16adc10850d537386f67e5ed46112cee48f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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'
|