Document new logging setup

This commit is contained in:
Nick Fox 2018-12-25 23:00:50 -05:00
parent 2f058d3ff5
commit c04300651a
No known key found for this signature in database
GPG Key ID: 82719985805A7CA8
1 changed files with 13 additions and 0 deletions

View File

@ -431,6 +431,19 @@ docker run -d --name bitwarden \
Note that you can also change the path where bitwarden_rs looks for static files by providing the `WEB_VAULT_FOLDER` environment variable with the path.
### Logging
Logging to a file is supported as of 1.5.0. You can specify the path to the log file with the `LOG_FILE` environment variable:
```sh
docker run -d --name bitwarden \
...
-e LOG_FILE=/data/bitwarden.log \
...
```
Note that if you're using the docker image, you'll most likely want to use a file path that is mounted from the host OS (such as the data folder).
### Other configuration
Though this is unlikely to be required in small deployment, you can fine-tune some other settings like number of workers using environment variables that are processed by [Rocket](https://rocket.rs), please see details in [documentation](https://rocket.rs/guide/configuration/#environment-variables).