From 324e97d59ae26b663e23d7a881c1e94852cc8b46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Garn=C3=A6s?= Date: Wed, 19 Jun 2024 09:25:04 +0200 Subject: [PATCH] Update default value for Varnish cache in docs According to Docker files CACHE_SIZE has a default value of 500M. The documentation says the default value is 100M. Update the documentation to refect the actual values. --- docs/docker-images/varnish.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docker-images/varnish.md b/docs/docker-images/varnish.md index b72ff8053d..eeb7249929 100644 --- a/docs/docker-images/varnish.md +++ b/docs/docker-images/varnish.md @@ -39,6 +39,6 @@ variables](../concepts-advanced/environment-variables.md). | HTTP_RESP_SIZE | 32k | Maximum number of bytes of HTTP backend response we will deal with. | | NUKE_LIMIT | 150 | Maximum number of objects we attempt to nuke in order to make space for an object body. | | CACHE_TYPE | malloc | Type of varnish cache. | -| CACHE_SIZE | 100M | Cache size. | +| CACHE_SIZE | 500M | Cache size. | | LISTEN | 8080 | Default backend server port. | | MANAGEMENT_LISTEN | 6082 | Default management listening port. |