diff options
author | Jeremy Lin <[email protected]> | 2020-08-05 22:35:29 -0700 |
---|---|---|
committer | Jeremy Lin <[email protected]> | 2020-08-05 22:35:29 -0700 |
commit | 570d6c8bf97d6c554a9f5265c9cc9aa4e8482f24 (patch) | |
tree | 71352be31fb907f4f2775413379744185bd57f79 /.env.template | |
parent | ad48e9ed0f91a1a7b38a032b2a538d4c9725f31c (diff) | |
download | vaultwarden-570d6c8bf97d6c554a9f5265c9cc9aa4e8482f24.tar.gz vaultwarden-570d6c8bf97d6c554a9f5265c9cc9aa4e8482f24.zip |
Add support for restricting org creation to certain users
Diffstat (limited to '.env.template')
-rw-r--r-- | .env.template | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.env.template b/.env.template index 4cd3ed25..e964873a 100644 --- a/.env.template +++ b/.env.template @@ -118,6 +118,14 @@ ## even if SIGNUPS_ALLOWED is set to false # SIGNUPS_DOMAINS_WHITELIST=example.com,example.net,example.org +## Controls which users can create new orgs. +## Blank or 'all' means all users can create orgs (this is the default): +# ORG_CREATION_USERS= +## 'none' means no users can create orgs: +# ORG_CREATION_USERS=none +## A comma-separated list means only those users can create orgs: + ## Token for the admin interface, preferably use a long random string ## One option is to use 'openssl rand -base64 48' ## If not set, the admin panel is disabled |