This document describes ways to restrict users from signing up on your self-hosted Bigcapital instance. This configuration is done by editing envirement variables of the instance.
SIGNUP_DISABLED
should be set to true
to disable the signing up of new users. When set, the following facts hold:
/auth/register
url and the page will show up but when sign-up the form will throw an error.SIGNUP_ALLOWED_DOMAINS
can be used to restrict signups to emails belonging to only a specific set of domains. This field takes a comma-separated set of values.
Setting SIGNUP_ALLOWED_DOMAINS
=bigcapital.ly allows [email protected] to sign up, but not [email protected].
SIGNUP_DISABLED
to true
first to allow a specific set of
domains.SIGNUP_ALLOWED_EMAILS
can be set to a comma-separated list of email addresses, that is always allowed to sign up, irrespective of the above environment variable.
SIGNUP_DISABLED
to true
first to allow a specific set of
email addresses.