1. Third Party Cookies
    1. Overview
    2. Password Reset
    1. System Notifications
    2. Data Manager Notifications
    1. Troubleshooting Load Times
    2. Cache Warming
    1. Updating License Key
    1. Web Accessibility
    1. Menu Tuning
    2. Cache Warming
    1. Password Settings

Setup: Authentication

Active Directory

Web Server Setup (Apache)

  1. Find the curator.conf file (default location is C:\InterWorks\Curator\curator.conf).

  2. Un-comment the lines (by deleting the # at the front of the line) starting at LoadModule authnz_sspi_module modules/mod_authnz_sspi.so and ending at </Location>. See example below:

    # Uncomment the lines below for AD automatic login
    LoadModule authnz_sspi_module modules/mod_authnz_sspi.so
    <Location />
        AuthName "Curator"
        AuthType SSPI
        SSPIAuth On
        SSPIAuthoritative On
        <RequireAll>
            <RequireAny>
                Require valid-user
            </RequireAny>
            <RequireNone>
                Require user "ANONYMOUS LOGON"
            </RequireNone>
        </RequireAll>
    </Location>
    
  3. After the configuration file has been edited and saved, restart the webserver.

Curator Setup

After you have completed the Curator installation and the Web Server Setup steps above, you can enable Active Directory/Kerberos on Curator.

  1. Login to the backend of your Curator instance (e.g. http://curatorexample.com/backend).
  2. Navigate to the Settings > Security > Authentication Settings section from the left-hand menu.
  3. Change the "Authentication Type" to Active Directory / Kerberos.