diff options
author | Nick Fox <[email protected]> | 2018-12-25 23:00:50 -0500 |
---|---|---|
committer | Nick Fox <[email protected]> | 2018-12-25 23:00:50 -0500 |
commit | c04300651a74c4fb6110a696a619718a9e26319f (patch) | |
tree | f4c27c939ab35587f1b664f56f99e9b21a5df1cb /README.md | |
parent | 2f058d3ff5800ce9f09b8705af5bb43a3a74ea5b (diff) | |
download | vaultwarden-c04300651a74c4fb6110a696a619718a9e26319f.tar.gz vaultwarden-c04300651a74c4fb6110a696a619718a9e26319f.zip |
Document new logging setup
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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). |