diff --git a/docs/references/bestpractices.md b/docs/references/bestpractices.md index 06098ec4e..906e5d8aa 100644 --- a/docs/references/bestpractices.md +++ b/docs/references/bestpractices.md @@ -65,7 +65,7 @@ This document gives you some recipes for configuring popular libraries to log to ## Memory -By default, applications get 200MB RAM (including swap). This can be changed using the `memoryLimit` field in the manifest. +By default, applications get 256MB RAM (including swap). This can be changed using the `memoryLimit` field in the manifest. Design your application runtime for concurrent use by 10s of users. The Cloudron is not designed for concurrent access by 100s or 1000s of users. diff --git a/docs/references/manifest.md b/docs/references/manifest.md index 60e667859..eb539293b 100644 --- a/docs/references/manifest.md +++ b/docs/references/manifest.md @@ -271,7 +271,7 @@ Required: no The `memoryLimit` field is the maximum amount of memory (including swap) in bytes an app is allowed to consume before it gets killed and restarted. -By default, all apps have a memoryLimit of 200MB. For example, to have a limit of 500MB, +By default, all apps have a memoryLimit of 256MB. For example, to have a limit of 500MB, ``` "memoryLimit": 524288000 diff --git a/docs/tutorials/packaging.md b/docs/tutorials/packaging.md index e6a8a7c14..bcdf58c4b 100644 --- a/docs/tutorials/packaging.md +++ b/docs/tutorials/packaging.md @@ -379,7 +379,7 @@ Logging to stdout has many advantages: ## Memory -By default, applications get 200MB RAM (including swap). This can be changed using the `memoryLimit` +By default, applications get 256MB RAM (including swap). This can be changed using the `memoryLimit` field in the manifest. Design your application runtime for concurrent use by 50 users. The Cloudron is not designed for