diff options
author | Erich Eckner <git@eckner.net> | 2019-09-02 11:47:33 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-09-02 12:03:10 +0200 |
commit | ff7a3622bc6b8002a2ca6c8c26668f4e1daa70df (patch) | |
tree | ab4993267e075f24c0d3717bb05b28772fbb1728 /etc/ca.conf | |
parent | 4b146b607885a0a0543c68ee553f7a6c64e1fe30 (diff) | |
download | simple-pki-ff7a3622bc6b8002a2ca6c8c26668f4e1daa70df.tar.xz |
sign-ca functional
Diffstat (limited to 'etc/ca.conf')
-rw-r--r-- | etc/ca.conf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/etc/ca.conf b/etc/ca.conf new file mode 100644 index 0000000..b4e8ca3 --- /dev/null +++ b/etc/ca.conf @@ -0,0 +1,11 @@ +#!/bin/bash + +# how long do we keep the old signature of the root-ca (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' |