From 36bd9fa85851f99cc9f54d84d7e393135e3ce9dc Mon Sep 17 00:00:00 2001 From: stevo8907 <84546350+stevo8907@users.noreply.github.com> Date: Sat, 2 Oct 2021 14:53:02 +0100 Subject: [PATCH] Destroyed Disabling or overriding the Vault interface hosting (markdown) --- ...-overriding-the-Vault-interface-hosting.md | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 Disabling-or-overriding-the-Vault-interface-hosting.md diff --git a/Disabling-or-overriding-the-Vault-interface-hosting.md b/Disabling-or-overriding-the-Vault-interface-hosting.md deleted file mode 100644 index 46851e3..0000000 --- a/Disabling-or-overriding-the-Vault-interface-hosting.md +++ /dev/null @@ -1,20 +0,0 @@ -As a convenience vaultwarden image will also host static files for Vault web interface. You can disable this static file hosting completely by setting the WEB_VAULT_ENABLED variable. - -```sh -docker run -d --name vaultwarden \ - -e WEB_VAULT_ENABLED=false \ - -v /vw-data/:/data/ \ - -p 80:80 \ - vaultwarden/server:latest -``` -Alternatively you can override the Vault files and provide your own static files to host. You can do that by mounting a path with your files over the `/web-vault` directory in the container. Just make sure the directory contains at least `index.html` file. - -```sh -docker run -d --name vaultwarden \ - -v /path/to/static/files_directory:/web-vault \ - -v /vw-data/:/data/ \ - -p 80:80 \ - vaultwarden/server:latest -``` - -Note that you can also change the path where vaultwarden looks for static files by providing the `WEB_VAULT_FOLDER` environment variable with the path. \ No newline at end of file