-
I had built a Biigle server and want to add a Sign-up form for new users to apply account. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can enable the sign-up form by setting the Adding other authentication methods is much more complex and not supported out of the box. There are Laravel packages for alternative authentication methods, though, so you could implement it on your own. We already experimented with LDAP authentication for the deployment in a research institute but this was not finalized and is not officially supported. |
Beta Was this translation helpful? Give feedback.
You can enable the sign-up form by setting the
BIIGLE_USER_REGISTRATION
environment variable totrue
(in the.env
file of your production configuration).Adding other authentication methods is much more complex and not supported out of the box. There are Laravel packages for alternative authentication methods, though, so you could implement it on your own. We already experimented with LDAP authentication for the deployment in a research institute but this was not finalized and is not officially supported.