diff options
author | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-10-26 23:48:36 +0100 |
---|---|---|
committer | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-10-26 23:48:36 +0100 |
commit | 550f7878bf509cc825726e6d95506e62857d48c9 (patch) | |
tree | cd8799f666e905e86c5292063685ab961d7e0ffd /server/main.go | |
parent | ace94cc001e51ef52aebf34c1fe39ad0f3501981 (diff) |
tested certificate chain code path further
Added more documentation and quick helper scripts for now. We need to
specify which signature schemes we expect/support from submitters.
Diffstat (limited to 'server/main.go')
-rw-r--r-- | server/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/main.go b/server/main.go index 53df7ee..618d40b 100644 --- a/server/main.go +++ b/server/main.go @@ -23,7 +23,7 @@ var ( prefix = flag.String("prefix", "/st/v1", "a prefix that proceeds each endpoint path") trillianID = flag.Int64("trillian_id", 5991359069696313945, "log identifier in the Trillian database") rpcDeadline = flag.Duration("rpc_deadline", time.Second*10, "deadline for backend RPC requests") - anchorsPemFile = flag.String("anchors_file", "testdata/anchors.pem", "path to a file containing PEM-encoded X.509 root certificates") + anchorsPemFile = flag.String("anchors_file", "testdata/chain/rgdd-root.pem", "path to a file containing PEM-encoded X.509 root certificates") ) func main() { |