mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-03-12 01:45:56 -05:00
The SIGNUPS_ALLOWED variable is ignored. #3862
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @JacobCZ on GitHub (Feb 5, 2019).
When I try to run the docker image with the SIGNUPS_ALLOWED set to false like so:
the signup button is still there and users can still create an account.
I'm running BW version 2.8.0 on Ubuntu 18.04.1 (4.15.0-34) and docker version 18.09.1
@mprasil commented on GitHub (Feb 5, 2019):
Are you sure users can still register? The button won't disappear, because Vault isn't aware of the registration availability, but when you try to register you should get an error response back saying that registrationisn't allowed.
@JacobCZ commented on GitHub (Feb 5, 2019):
@mprasil oooooh! My bad, sorry. 🙂
@Happyfeet01 commented on GitHub (Mar 7, 2019):
Can i run this command on an existing container?
@dani-garcia commented on GitHub (Mar 7, 2019):
Yes, you can either stop the container and run it again with the same command but adding
-e SIGNUPS_ALLOWED=falseto it. Or, if you have the admin panel activated, you can change it from there without restarting.@Happyfeet01 commented on GitHub (Mar 8, 2019):
i added the option the docker-compose.yml it works now