Jan Dittberner
c5c8150883
This commit provides examples for both CRL and openssl index.txt based configurations. README.md is added to the generated Debian packages. A systemd service unit file has been added. The configuration file can now be specified using the -configFile command line flag.
13 lines
414 B
YAML
13 lines
414 B
YAML
# example configuration for an OCSP responder using openssl index.txt database files
|
|
---
|
|
issuers:
|
|
- caCertificate: root/ca.pem
|
|
responderCertificate: root-resp.crt.pem
|
|
responderKey: root-resp.key.pem
|
|
dbType: openssl
|
|
dbFile: root/index.txt
|
|
- caCertificate: sub1/ca.pem
|
|
responderCertificate: sub1-resp.crt.pem
|
|
responderKey: sub1-resp.key.pem
|
|
dbType: openssl
|
|
dbFile: sub1/index.txt
|