Fix spelling of "tls_connection_policies"

Matt Holt 2019-07-18 09:11:58 -06:00
parent 9cc5b2247b
commit b8f79ba9fa

@ -62,7 +62,7 @@ Features which are available in Caddy Enterprise are indicated with   🏢
- [http.handlers.subroute](#httphandlerssubroute) - [http.handlers.subroute](#httphandlerssubroute)
- [http.handlers.error](#httphandlerserror) - [http.handlers.error](#httphandlerserror)
- [http/servers/errors](#httpserverserrors) - [http/servers/errors](#httpserverserrors)
- [http/servers/tls_conn_policies](#httpserverstls_conn_policies) - [http/servers/tls_connection_policies](#httpserverstls_connection_policies)
- [tls.certificate_selection.enterprise](#tlscertificate_selectionenterprise) - [tls.certificate_selection.enterprise](#tlscertificate_selectionenterprise)
- [http/servers/auto_https](#httpserversauto_https) - [http/servers/auto_https](#httpserversauto_https)
- [tls]() - [tls]()
@ -395,7 +395,7 @@ A map of server ID (of your choice) to its configuration object. Each server is
"max_header_bytes": 0, "max_header_bytes": 0,
"routes": [], "routes": [],
"errors": {}, "errors": {},
"tls_conn_policies": [], "tls_connection_policies": [],
"auto_https": {}, "auto_https": {},
"max_rehandles": 3, "max_rehandles": 3,
"strict_sni_host": false "strict_sni_host": false
@ -410,7 +410,7 @@ A map of server ID (of your choice) to its configuration object. Each server is
- `max_header_bytes`: How many bytes to allow an HTTP request header to be read. - `max_header_bytes`: How many bytes to allow an HTTP request header to be read.
- `routes`: The list of routes. - `routes`: The list of routes.
- `errors`: Configures how to handle errors during HTTP requests. - `errors`: Configures how to handle errors during HTTP requests.
- `tls_conn_policies`: List of TLS connection policies. - `tls_connection_policies`: List of TLS connection policies.
- `auto_https`: Customize or disable automatic HTTPS. - `auto_https`: Customize or disable automatic HTTPS.
- `max_rehandles`: How many rehandles to allow; prevents infinite looping. - `max_rehandles`: How many rehandles to allow; prevents infinite looping.
- `strict_sni_host`: If true, enforce that an HTTP Host header matches the connection's ServerName (SNI) value from the TLS handshake. Important when using TLS client authentication. - `strict_sni_host`: If true, enforce that an HTTP Host header matches the connection's ServerName (SNI) value from the TLS handshake. Important when using TLS client authentication.
@ -1040,7 +1040,7 @@ In an error route, extra placeholders are available:
``` ```
#### http/servers/tls_conn_policies #### http/servers/tls_connection_policies
An ordered list of policies which specify how to complete TLS handshakes when establishing an HTTPS connection. The first matching policy will be used. An ordered list of policies which specify how to complete TLS handshakes when establishing an HTTPS connection. The first matching policy will be used.