diff --git a/Changing-the-API-request-size-limit.md b/Changing-the-API-request-size-limit.md new file mode 100644 index 0000000..fbcf229 --- /dev/null +++ b/Changing-the-API-request-size-limit.md @@ -0,0 +1,11 @@ +By default the API calls are limited to 10MB. This should be sufficient for most cases, however if you want to support large imports, this might be limiting you. On the other hand you might want to limit the request size to something smaller than that to prevent API abuse and possible DOS attack, especially if running with limited resources. + +To set the limit, you can use the `ROCKET_LIMITS` variable. Example here shows 10MB limit for posted json in the body (this is the default): + +```sh +docker run -d --name bitwarden \ + -e ROCKET_LIMITS={json=10485760} \ + -v /bw-data/:/data/ \ + -p 80:80 \ + mprasil/bitwarden:latest +``` \ No newline at end of file