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
*Description:* This option requests the compression of HTTP responses from the server. The available values are `gzip`, `deflate`, and `all` to enable all compression types. If no compression is required, use the `identity` value.
19
+
20
+
### Example: configure an http destination with compression
21
+
22
+
```config
23
+
destination d_http_compressed{
24
+
http(url("127.0.0.1:80"),
25
+
content-compression("deflate"),
26
+
accept-encoding("all"));
27
+
};
28
+
```
29
+
13
30
{% include doc/admin-guide/options/batch-bytes.md %}
14
31
15
32
{% include doc/admin-guide/http-batch.md %}
@@ -59,6 +76,23 @@ version 3.18 and later.
59
76
60
77
{% include doc/admin-guide/options/cert-file.md %}
*Description:* This option requests {{ site.product.short_name }} to compress sent messages. The available values are `gzip`, `deflate`, and `all` to enable all compression types. If no compression is required, use the `identity` value.
85
+
86
+
### Example: configure an http destination with compression
87
+
88
+
```config
89
+
destination d_http_compressed{
90
+
http(url("127.0.0.1:80"),
91
+
content-compression("deflate"),
92
+
accept-encoding("all"));
93
+
};
94
+
```
95
+
62
96
{% include doc/admin-guide/tls-block.md %}
63
97
64
98
{% include doc/admin-guide/dedicated-tls-options.md %}
0 commit comments