|
# Simple TLS config file
|
|
|
|
port: 4443
|
|
net: localhost
|
|
|
|
tls {
|
|
cert_file: "./configs/certs/server.pem"
|
|
key_file: "./configs/certs/key.pem"
|
|
timeout: 2
|
|
|
|
# Optional certificate authority for clients
|
|
ca_file: "./configs/certs/ca.pem"
|
|
|
|
# Require a client certificate
|
|
verify: true
|
|
}
|