TeamCity
 
You are viewing the documentation for an earlier version of TeamCity.

Configuring Authentication Scheme

Last modified: 20 April 2023

To change the authentication scheme:

  1. Navigate to the file <TeamCity Data Directory> /config/main-config.xml

  2. Locate section <auth-type>, or create, if it doesn't exist. Note that if authentication scheme is not specified, the default scheme is used.

  3. Specify the login module by editing the class attribute of the <login-module> tag. Example:

    <login-module class="jetbrains.buildServer.serverSide.impl.auth.NTLoginModule"/>

  4. Specify the welcome message by editing the <login-description> tag. Example:

    <login-description>Welcome to TeamCity, your team building environment!</login-description>

  5. Specify the possibility to log in as a guest user. Example:

    <guest-login allowed="true" />

  6. Save changes.

See also:



Authentication Settings