1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00

Add documentation for client_cert, client_key and client_passphrase for csaf_aggregator

This commit is contained in:
JanHoefelmeyer 2023-08-03 10:04:51 +02:00
parent 47e55a33bc
commit b0b3852e99
2 changed files with 12 additions and 0 deletions

View file

@ -95,6 +95,9 @@ interim_years // limiting the years for which interim documents are se
verbose // print more diagnostic output, e.g. https requests (default false) verbose // print more diagnostic output, e.g. https requests (default false)
allow_single_provider // debugging option (default false) allow_single_provider // debugging option (default false)
ignorepattern // patterns of advisory URLs to be ignored ignorepattern // patterns of advisory URLs to be ignored
client_cert // path to client certificate to access access-protected advisories
client_key // path to client key to access access-protected advisories
client_passphrase // client passphrase to access access-protected advisories
``` ```
Next we have two TOML _tables_: Next we have two TOML _tables_:
@ -125,6 +128,9 @@ update_interval
create_service_document create_service_document
categories categories
ignorepattern ignorepattern
client_cert
client_key
client_passphrase
``` ```
Where valid `name` and `domain` settings are required. Where valid `name` and `domain` settings are required.
@ -196,6 +202,9 @@ insecure = true
# rate = 1.2 # rate = 1.2
# insecure = true # insecure = true
write_indices = true write_indices = true
client_cert = "./../devca1/testclient1.crt"
client_key = "./../devca1/testclient1-key.pem"
# client_passphrase =
[[providers]] [[providers]]
name = "local-dev-provider3" name = "local-dev-provider3"

View file

@ -38,6 +38,9 @@ insecure = true
# rate = 1.2 # rate = 1.2
# insecure = true # insecure = true
write_indices = true write_indices = true
client_cert = "./../devca1/testclient1.crt"
client_key = "./../devca1/testclient1-key.pem"
# client_passphrase =
[[providers]] [[providers]]
name = "local-dev-provider3" name = "local-dev-provider3"