User Registration#
Overview#
The Gluu Server includes two custom scripts to support a self-service user registration process:
-
user_registration: This script implements a very basic user registration process without email activation.
-
user_confirm_registration: This script adds an email activation sequence to the user registration process.
Note
To implement a custom registraton workflow (recommended!), follow the tutorial in our SCIM 2.0 docs.
Enable User Registration#
To enable user registration via the Gluu Server, follow these steps:
-
Navigate to
Manage Custom Scripts
and select theUser Registration
tab. -
Enable the
user_registration
script and press save. -
To add an email activation sequence, also enable the
user_confirm_registration
script and configure SMTP. -
New users will now be able to register for accounts at:
https://<hostname>/identity/register
.
Adding Attributes to Registration#
A limited number of attributes are present in the default registration form. More attributes can be added as needed by following the doc for adding attributes.
Manual Approval of New Users#
By default, the Custom property (key/value)
field will include the values: enable_user
and true
. This enables new users to sign in as soon as registration is complete. If new users should be manually reviewed and approved, set this value to false
.
Enforcing Unique Email Addresses#
Administrators can choose whether all email addresses should be unique. By default, uniqueness is enforced. To turn email uniqueness off, make the below changes in oxTrust and the LDAP.
Warning
When uniqueness is disabled, more than one user can register with the same email address.
oxTrust#
- Log in to the Gluu Admin UI
- Navigate to
Configuration
>JSON Configuration
- Select the
oxTrust Configuration
tab - Select the appropriate option in the
enforceEmailUniqueness
field - Save
Design customizations#
To modify the look and feel of the registration page, follow the customization doc.