File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,13 @@ the cluster and encountering errors like this:
4545Peer closed connection in SSL handshake (104: Connection reset by peer) while SSL handshaking to upstream
4646```
4747
48+ The following examples assume you are using nginx as a reverse-proxy. Please consult the documentation of other
49+ reverse-proxy servers to achieve the same result.
50+
4851Ensure that the SNI (Server Name Indication) TLS Extension is properly set for requests to the ingress controller of the Kubernetes Cluster.
49- This is not the case when using IPs in ` proxy_pass ` on the reverse proxy and will result in an SSL handshake error.
52+ This is not the case when using IPs in ` proxy_pass ` and will result in an SSL handshake error.
5053
51- To pass the SNI hostname from the incoming request to the upstream server, add the following directives to NGINX :
54+ To pass the SNI hostname from the incoming request to the upstream server, add the following directives to nginx :
5255```
5356proxy_ssl_name $host;
5457proxy_ssl_server_name on;
@@ -57,4 +60,4 @@ proxy_ssl_server_name on;
5760If you are using different hostnames on the upstream and on the reverse-proxy, set the value in the
5861` proxy_ssl_name ` directive to the corresponding hostname of the upstream server.
5962
60- Please consult the documentation of other reverse-proxy servers to achieve the same result.
63+
You can’t perform that action at this time.
0 commit comments