Skip to content

Commit d22d298

Browse files
Fill in example placeholders
1 parent 2acbfa5 commit d22d298

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/aegis/about/reuse-and-coalescing.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ Aside from [concurrent connections](/aegis/about/ips-allocation/#connections-to-
1313
Implemented by HTTP/1.1, connection reuse describes multiple requests passing through one same connection (between one source IP:port and one destination IP:port). It is commonly the case even for simple websites nowadays.
1414

1515
<Details header="Example">
16-
16+
When a connection is initiated for `shop.example.com`, several embedded subresources may be requested - CSS, image files, advertisement, etc. This can mean hundreds of requests just for the website to load. Instead of having a one to one ratio of request per connection, a single connection is used for multiple requests.
1717
</Details>
1818

1919
With HTTP/2, requests can use the same connection even if they are for different domains.
2020

2121
<Details header="Example">
22-
22+
A connection initiated for `shop.example.com` can be used for requests for `blog.example.com` as well - as long as the requests have the same destination IP:port and the server TLS certificate is authoritative for both hostnames.
2323
</Details>
2424

25-
Refer to the [Cloudflare blog](https://blog.cloudflare.com/aegis-deep-dive/) for further details.
25+
Refer to the [Cloudflare blog post](https://blog.cloudflare.com/aegis-deep-dive/) for further details.
2626

2727
[^1]: If you have one Aegis IP and two origins (A and B), this single Aegis IP can support 40,000 concurrent connections to origin A, while simultaneously supporting 40,000 concurrent connections to origin B.

0 commit comments

Comments
 (0)