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 %}
Copy file name to clipboardExpand all lines: doc/_admin-guide/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: syslog-ng Open Source Edition Administration Guides
3
3
id: adm-guide
4
4
description: >-
5
-
Welcome to the {{ site.product.name }} {{ site.github.latest_release.name | remove: '.tar.gz' | remove: 'syslog-ng-'}} Administration Guide. This document describes how to configure and manage {{ site.product.name }} ({{ site.product.short_name }}). Background information for the technology and concepts used by the product is also discussed.
5
+
Welcome to the {{ site.product.name }} 4.8.1 Administration Guide. This document describes how to configure and manage {{ site.product.name }} ({{ site.product.short_name }}). Background information for the technology and concepts used by the product is also discussed.
0 commit comments