Remove duplicate ALPN

Matt Holt 2019-11-22 15:53:55 -07:00
parent 8a09d95217
commit 0cccbbd726

@ -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.