3 Commits

3 changed files with 10 additions and 2 deletions

View File

@@ -4,4 +4,10 @@ This repository contains Rainloop webmail Docker container build scripts and nec
## Persistent things ## Persistent things
There are some things that should be preserved between container's restarts. Please, add new volume for ``/var/www/rainloop/data`` directory. There are some things that should be preserved between container's restarts. Please, add new volume for ``/var/www/rainloop/data`` directory.
If you're binding directory except of creating volume please do proper ``chown``:
```shell
chown -R 100:101 /dir/with/data
```

View File

@@ -9,6 +9,8 @@ server {
autoindex on; autoindex on;
charset utf-8; charset utf-8;
client_max_body_size 500m; client_max_body_size 500m;
# To not cache requests bodys on disk.
client_body_buffer_size 16m;
gzip on; gzip on;

View File

@@ -394,7 +394,7 @@ max_input_time = 60
;max_input_nesting_level = 64 ;max_input_nesting_level = 64
; How many GET/POST/COOKIE input variables may be accepted ; How many GET/POST/COOKIE input variables may be accepted
;max_input_vars = 1000 max_input_vars = 100000
; Maximum amount of memory a script may consume (128MB) ; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit ; http://php.net/memory-limit