vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 4fcdf336211b708fdc9802eaa800c1b1f8f2b7a6
parent 15833e8d957a5048b10daaca3bc306203e6eff9c
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Sat, 30 Jun 2018 17:48:34 +0200

Merge pull request #47 from mprasil/limits

Add limits configuration to the readme
Diffstat:
MREADME.md | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -67,6 +67,15 @@ You could also set the `SIGNUPS_ALLOWED` environment variable. To do that when u -e SIGNUPS_ALLOWED=false ``` +## Changing the API request size limit + +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): +``` +-e ROCKET_LIMITS={json=10485760} +``` + ## Enabling HTTPS To enable HTTPS, you need to configure the `ROCKET_TLS` option, the same way as `SIGNUPS_ALLOWED`.