Authentication Configuration

From AlfrescoWiki

Jump to: navigation, search

To enable the NTLM authentication edit the web.xml file in the WEB-INF folder and change the filter mapping section from :-

  <filter-mapping>
     <filter-name>Authentication Filter</filter-name>
     <url-pattern>/faces/*</url-pattern>
  </filter-mapping>

to

  <filter-mapping>
     <filter-name>NTLM Authentication Filter</filter-name>
     <url-pattern>/faces/*</url-pattern>
  </filter-mapping>

The default NTLM filter configuration will try to find the local domain/workgroup name and find the domain controllers or browse master.

The following parameters are available to configure the NTLM filter :-

Contents

[edit] LocalDomain

Use the local domain/workgroup servers to authenticate users

[edit] LocalServer

Use the local server to authenticate users, only useful on Windows as it's likely to be the Alfresco CIFS server when running on Linux. Possible values are true and false.

[edit] Domain

Domain/workgroup to use for authentication

[edit] Servers

Comma-delimited list of server names or addresses to use for authentication

[edit] AllowGuest

If the authentication server has the guest account enabled it may allow any user to authenticate but sets a flag to indicate a guest logon.


Back to Server Configuration