From f84eb545a25b457021fca100f9ddaf379e91707f Mon Sep 17 00:00:00 2001 From: Vadim Eisenberg Date: Wed, 22 Aug 2018 16:28:31 +0300 Subject: [PATCH] Rewrite ingress without tls termination example (#2342) * remove ingress without tls termination example * add ingress without tls termination example --- .../{ingress-for-https => advanced-gateways}/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename content/docs/examples/{ingress-for-https => advanced-gateways}/index.md (95%) diff --git a/content/docs/examples/ingress-for-https/index.md b/content/docs/examples/advanced-gateways/index.md similarity index 95% rename from content/docs/examples/ingress-for-https/index.md rename to content/docs/examples/advanced-gateways/index.md index fa65717191..e08d109e47 100644 --- a/content/docs/examples/ingress-for-https/index.md +++ b/content/docs/examples/advanced-gateways/index.md @@ -1,14 +1,14 @@ --- -title: Ingress Gateway for an HTTPS service -description: Describes how to configure an Ingress Gateway for an HTTPS service. +title: Ingress gateway without TLS termination +description: Describes how to configure SNI passthrough for an ingress gateway. weight: 31 keywords: [traffic-management,ingress, https] --- The [Securing Gateways with HTTPS](/docs/tasks/traffic-management/secure-ingress/) task describes how to configure HTTPS ingress access to an HTTP service. This example describes how to configure ingress access to an HTTPS service. -You will deploy an [NGINX](https://www.nginx.com) server to your Kubernetes cluster to provide an HTTPS Kubernetes -service. Then you will configure a gateway to provide ingress access to this service via the `nginx.example.com` host. +You deploy an [NGINX](https://www.nginx.com) server to your Kubernetes cluster to provide an HTTPS Kubernetes +service. Then you configure a gateway to provide ingress access to this service via the `nginx.example.com` host. ## Generate client and server certificates and keys @@ -181,7 +181,7 @@ to hold the configuration of the NGINX server: ## Configure an ingress gateway -1. Define a `Gateway` with a `server` section for port 443. Note the `PASSTHROUGH` `tls` `mode`, the gateway will pass +1. Define a `Gateway` with a `server` section for port 443. Note the `PASSTHROUGH` `tls` `mode`, the gateway passes the ingress traffic AS IS, without terminating TLS. {{< text bash >}}