From c90b49d9ae16879686daa355a8f5121be497b01d Mon Sep 17 00:00:00 2001 From: Josh Thorpe <33478918+ThorpeJosh@users.noreply.github.com> Date: Mon, 6 Feb 2023 10:40:16 +0800 Subject: [PATCH] Add PASSWORD_FILE env variable to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6daca1b2..b20a3db0 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ These options can be configured by setting environment variables using `-e KEY=" | Env | Default | Example | Description | | - | - | - | - | | `PASSWORD` | - | `foobar123` | When set, requires a password when logging in to the Web UI. | +| `PASSWORD_FILE` | - | `/run/secrets/password` | Path to a mounted password file. When set, contents of the file will override value from `PASSWORD`. | | `WG_HOST` | - | `vpn.myserver.com` | The public hostname of your VPN server. | | `WG_PORT` | `51820` | `12345` | The public UDP port of your VPN server. WireGuard will always listen on `51820` inside the Docker container. | | `WG_MTU` | `null` | `1420` | The MTU the clients will use. Server uses default WG MTU. |