From 0cccbbd726e60eed5d3e23c22488f14cb16483ad Mon Sep 17 00:00:00 2001 From: Matt Holt Date: Fri, 22 Nov 2019 15:53:55 -0700 Subject: [PATCH] Remove duplicate ALPN --- v2:-Documentation.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/v2:-Documentation.md b/v2:-Documentation.md index 5c3d1a0..8545d01 100644 --- a/v2:-Documentation.md +++ b/v2:-Documentation.md @@ -2194,7 +2194,6 @@ Most users will not need this; it is an advanced configuration feature. "alpn": [], "cipher_suites": [], "curves": [], - "alpn": [], "protocol_min": [], "protocol_max": [], "certificate_selection": {}, @@ -2206,10 +2205,9 @@ Most users will not need this; it is an advanced configuration feature. ``` - `match`: Configures how to match this policy with a TLS ClientHello. If the policy matches, it will be used. -- `alpn`: The ALPN value(s) to set. +- `alpn`: Protocols to use for Application-Layer Protocol Negotiation (ALPN) during the handshake. - `cipher_suites`: The list of cipher suites to support. - `curves`: The list of elliptic curves to support. -- `alpn`: Protocols to use for Application-Layer Protocol Negotiation (ALPN) during the handshake. - `protocol_min`: Minimum TLS protocol version to allow. Default is `tls1.2`. - `protocol_max`: Maximum TLS protocol version to allow. Default is `tls1.3`. - `certificate_selection`: Certificate selection module, which configures how to choose a certificate if more than one match the given ServerName (SNI) value.