Disable registration or password-based login

Relevant for:CVAT Enterprise

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

Once the configuration file is created/updated, export corresponding environment variable before running CVAT:

export AUTH_CONFIG_PATH="<path_to_auth_config>"