blob: 2f85b4050d736714370340fbd427fefdb51a43b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
# details of the ca
ca_name='eckner-ca'
ca_subject_prefix='/C=DE/ST=Thuringia/L=Jena/O=Eckner/OU=Net'
# generate new ca key/cert afther this many days
ca_min_duration=60
# which system user owns the ca
ca_user='erich'
# where should the ca certificates be published?
remote_host='user@example.com'
remote_dir='httpdocs/certs'
|