aboutsummaryrefslogtreecommitdiff
path: root/https/web-config.yml
diff options
context:
space:
mode:
Diffstat (limited to 'https/web-config.yml')
-rw-r--r--https/web-config.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/https/web-config.yml b/https/web-config.yml
index 0f439da..9937291 100644
--- a/https/web-config.yml
+++ b/https/web-config.yml
@@ -1,10 +1,11 @@
1tlsConfig : 1tls_config:
2 # Certificate and key files for server to use to authenticate to client 2 # Certificate and key files for server to use to authenticate to client
3 tlsCertPath : <filename> 3 cert_file: <filename>
4 tlsKeyPath : <filename> 4 key_file: <filename>
5 5
6 # Server policy for client authentication. Maps to ClientAuth Policies 6 # Server policy for client authentication. Maps to ClientAuth Policies
7 [ clientAuth : <string> ] 7 # For more detail on clientAuth options: [ClientAuthType](https://golang.org/pkg/crypto/tls/#ClientAuthType)
8 [ client_auth_type: <string> | default = "NoClientCert" ]
8 9
9 # CA certificate for client certificate authentication to the server 10 # CA certificate for client certificate authentication to the server
10 [ clientCAs : <filename> ] 11 [ client_ca_file: <filename> ]