Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/content/blogs/release-v122.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ You can now configure your env manifest to have CloudFront terminate TLS for you

```yaml
cdn:
tls_termination: true
terminate_tls: true
```

The configuration above uses CloudFront for TLS termination, which means the traffic from `CF → ALB → ECS` will be HTTP only. This brings faster TLS termination and shorter page loading for viewers, since the CloudFront edges are usually geographically closer to them.
Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/developing/content-delivery.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ You can optionally use CloudFront for TLS termination by configuring the env man

```yaml
cdn:
tls_termination: true
terminate_tls: true
```

And traffic from `CloudFront → Application Load Balancer (ALB) → ECS` will be HTTP only. This brings the benefit of terminating TLS at a geographically closer endpoint to the end user for faster TLS handshakes.
2 changes: 1 addition & 1 deletion site/content/docs/manifest/environment.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ cdn:
certificate: "arn:aws:acm:us-east-1:1234567890:certificate/e5a6e114-b022-45b1-9339-38fbfd6db3e2"
```

<span class="parent-field">cdn.</span><a id="cdn-tls-termination" href="#cdn-tls-termination" class="field">`tls_termination`</a> <span class="type">Boolean</span>
<span class="parent-field">cdn.</span><a id="cdn-tls-termination" href="#cdn-tls-termination" class="field">`terminate_tls`</a> <span class="type">Boolean</span>
Enable TLS termination for CloudFront.


Expand Down