Skip to content

Commit 26d384b

Browse files
committed
Add notice that our examples based on assumption that the user is using nginx
1 parent 883f53d commit 26d384b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/self-hosted/kubernetes-troubleshooting.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,13 @@ the cluster and encountering errors like this:
4545
Peer 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+
4851
Ensure 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
```
5356
proxy_ssl_name $host;
5457
proxy_ssl_server_name on;
@@ -57,4 +60,4 @@ proxy_ssl_server_name on;
5760
If 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+

0 commit comments

Comments
 (0)