Skip to content

Commit

Permalink
fix(ssl): provide default values in configuration (#3191)
Browse files Browse the repository at this point in the history
provide default configuration value when using Python API
  • Loading branch information
aarnphm committed Nov 4, 2022
1 parent a52a201 commit 364f9e5
Showing 1 changed file with 8 additions and 1 deletion.
Expand Up @@ -15,7 +15,14 @@ api_server:
format:
trace_id: 032x
span_id: 016x

ssl:
certfile: ~
keyfile: ~
keyfile_password: ~
ca_certs: ~
version: 17 # ssl.PROTOCOL_TLS_SERVER
cert_reqs: 0 # ssl.CERT_NONE
ciphers: TLSv1 # default ciphers
http:
host: 0.0.0.0
port: 3000
Expand Down

0 comments on commit 364f9e5

Please sign in to comment.