Disable registration or password-based login
Note
This is a paid feature available for Enterprise clients.Update authentication config
Please add the following lines to your auth_config.yml (or create such file if it does not exist)
to prevent registering user accounts and disable password-based login:
basic:
registration:
enabled: false
login:
enabled: false
You may permit login, by changing the corresponding flag to true.
Start CVAT
Restart required
If CVAT is already running, don’t forget to restart the containers to apply authentication configuration.Once the configuration file is created/updated, export corresponding environment variable before running CVAT:
export AUTH_CONFIG_PATH="<path_to_auth_config>"