Skip to content

Commit 2eeccbb

Browse files
author
Kate Osborn
committed
Doc fixes
1 parent ac261d1 commit 2eeccbb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

site/content/how-to/traffic-management/tls-passthrough.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ toc: true
55
docs: "DOCS-000"
66
---
77

8-
Learn how to passthrough TLS connection using NGINX Gateway Fabric.
8+
Learn how to passthrough TLS connections using NGINX Gateway Fabric.
99

1010
## Overview
1111

@@ -118,7 +118,7 @@ This will create the **secure-app** service and a deployment. Run the following
118118
kubectl get pods,svc
119119
```
120120

121-
Your output should include the **secure-app** pod and the **secure-app** service:
121+
The output should include the **secure-app** pod and the **secure-app** service:
122122

123123
```text
124124
NAME READY STATUS RESTARTS AGE
@@ -128,7 +128,7 @@ NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
128128
service/secure-app ClusterIP 192.168.194.152 <none> 8443/TCP 12s
129129
```
130130

131-
Next, let's create a gateway. This will create TLS listener with the hostname *.example.com. Copy paste this into your terminal.
131+
Create a gateway. This will create TLS listener with the hostname *.example.com. Copy paste this into your terminal.
132132

133133
```yaml
134134
kubectl apply -f - <<EOF
@@ -154,7 +154,7 @@ spec:
154154
EOF
155155
```
156156

157-
Finally, let's create a TLS Route. This will reference our service and the gateway.
157+
Create a TLSRoute, this will reference the service and the gateway.
158158

159159
```yaml
160160
kubectl apply -f - <<EOF
@@ -177,13 +177,13 @@ spec:
177177
EOF
178178
```
179179

180-
## Send Traffic
180+
## Send traffic
181181

182-
Using the external IP address and port for NGINX Gateway Fabric, we can send traffic to our coffee application.
182+
Using the external IP address and port for NGINX Gateway Fabric, send traffic to the coffee application.
183183

184184
{{< note >}}If you have a DNS record allocated for `cafe.example.com`, you can send the request directly to that hostname, without needing to resolve.{{< /note >}}
185185

186-
To test that NGINX sends an HTTPS redirect, we will send requests to the `secure-app` service on the HTTPS port.
186+
Send a request to the `secure-app` service on the HTTPS port with the `--insecure` flag. The `--insecure` flag is required because the `secure-app` is using self-signed certificates.
187187

188188
```shell
189189
curl --resolve cafe.example.com:$GW_PORT:$GW_IP https://cafe.example.com:$GW_PORT --insecure

0 commit comments

Comments
 (0)