You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Speed] Add API link and example for HTTP2 multiplexing (#20315)
* Adds link and API example
* Adds dashboard instructions
* Apply suggestions from code review
Co-authored-by: marciocloudflare <[email protected]>
---------
Co-authored-by: marciocloudflare <[email protected]>
A protocol is a set of rules governing the exchange or transmission of data between devices. One of the most important protocols that run on the human-computer interaction layer, where applications can access the network services, is HTTP (Hypertext Transfer Protocol).
10
10
@@ -29,7 +29,36 @@ If you wish to disable HTTP/2 to Origin, you can follow these steps:
29
29
30
30
Cloudflare’s HTTP/2 multiplexing to origin reduces active connections by pooling many requests into fewer TCP connections. If a request arrives and the current connection has not reached the stream limit, Cloudflare reuses the existing connection. If the limit has not been reached, Cloudflare may open additional connections to handle more requests. Because multiplexing reuses fewer TCP connections, the overall number of active connections to your origin will typically be lower, which is often helpful for systems sensitive to connection overhead. During surges (like failovers), Cloudflare scales connections by first using available streams, then opening new ones as needed.
31
31
32
-
Connection multiplexing is enabled by default on Free, Pro and Business zones and uses up to 100 concurrent streams by default. For Enterprise plans, you can explicitly configure the maximum number of concurrent streams (often called the “multiplexing ratio”) for a zone.
32
+
### Configuration
33
+
34
+
Connection multiplexing is enabled by default on Free, Pro and Business zones and uses up to 100 concurrent streams by default. Enterprise plans can explicitly configure the maximum number of concurrent streams (often called the “multiplexing ratio”) for a zone in the dashboard or via API.
35
+
36
+
<Detailsheader="Dashboard">
37
+
38
+
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login) and select your account.
39
+
2. Choose the domain that will use HTTP/2 to Origin.
40
+
3. Select **Speed > Optimization**.
41
+
4. Open the **Protocol Optimization** tab.
42
+
5. Under **HTTP/2 to Origin**, select **Configure** and adjust the stream settings as needed.
0 commit comments