mirror of https://github.com/tidwall/tile38.git
17 lines
298 B
Plaintext
17 lines
298 B
Plaintext
|
# 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
|
||
|
}
|