Skip to content

Commit

Permalink
cmd and API use same defaults when creating a new DID (#2339)
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardsn authored Jul 13, 2023
1 parent dff8ac2 commit 29eda5c
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 96 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ The following options can be configured on the server:
storage.redis.sentinel.username Username for authenticating to Redis Sentinels.
storage.redis.tls.truststorefile PEM file containing the trusted CA certificate(s) for authenticating remote Redis servers. Can only be used when connecting over TLS (use 'rediss://' as scheme in address).
**VCR**
vcr.openid4vci.definitionsdir Directory with the additional credential definitions the node could issue (experimental, may change without notice).
vcr.openid4vci.enabled false Enable issuing and receiving credentials over OpenID4VCI (experimental).
vcr.openid4vci.timeout 30s Time-out for OpenID4VCI HTTP client operations.
vcr.openid4vci.definitionsdir Directory with the additional credential definitions the node could issue (experimental, may change without notice).
vcr.openid4vci.enabled false Enable issuing and receiving credentials over OpenID4VCI (experimental).
vcr.openid4vci.timeout 30s Time-out for OpenID4VCI HTTP client operations.
==================================== =============================================================================================================================================================================================================================================================================================================== ==================================================================================================================================================================================================================================

This table is automatically generated using the configuration flags in the core and engines. When they're changed
Expand Down
8 changes: 4 additions & 4 deletions docs/pages/deployment/cli-reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ The following options apply to the server commands below:
--tls.certkeyfile string PEM file containing the private key of the server certificate.
--tls.offload string Whether to enable TLS offloading for incoming connections. Enable by setting it to 'incoming'. If enabled 'tls.certheader' must be configured as well.
--tls.truststorefile string PEM file containing the trusted CA certificates for authenticating remote servers. (default "truststore.pem")
--vcr.openid4vci.definitionsdir string Directory with the additional credential definitions the node could issue (experimental, may change without notice).
--vcr.openid4vci.enabled Enable issuing and receiving credentials over OpenID4VCI (experimental).
--vcr.openid4vci.timeout duration Time-out for OpenID4VCI HTTP client operations. (default 30s)
--vcr.openid4vci.definitionsdir string Directory with the additional credential definitions the node could issue (experimental, may change without notice).
--vcr.openid4vci.enabled Enable issuing and receiving credentials over OpenID4VCI (experimental).
--vcr.openid4vci.timeout duration Time-out for OpenID4VCI HTTP client operations. (default 30s)
--verbosity string Log level (trace, debug, info, warn, error) (default "info")

nuts config
Expand Down Expand Up @@ -422,7 +422,7 @@ Registers a new DID
--capabilityInvocation Pass 'false' to disable capabilityInvocation capabilities. (default true)
--controllers strings Comma-separated list of DIDs that can control the generated DID Document.
-h, --help help for create-did
--keyAgreement Pass 'true' to enable keyAgreement capabilities.
--keyAgreement Pass 'false' to disable keyAgreement capabilities. (default true)
--selfControl Pass 'false' to disable DID Document control. (default true)
--timeout duration Client time-out when performing remote operations, such as '500ms' or '10s'. Refer to Golang's 'time.Duration' syntax for a more elaborate description of the syntax. (default 10s)
--token string Token to be used for authenticating on the remote node. Takes precedence over 'token-file'.
Expand Down
Loading

0 comments on commit 29eda5c

Please sign in to comment.