PhenixID web apps authentication – Windows SSO
The purpose of this document is to describe how to configure PhenixID server internal web applications for authentication using Windows SSO (Kerberos or NTLM) authentication.
Prerequisites
Follow the prerequisites for Windows SSO in this document: Prerequisites
Modules Required
- auth-http
Configuration
Configuration Properties:
Example configuration
The configuration must be added in the Advanced section of Configuration Manager.
HTTP Authenticators
{
"id" : "winsso",
"alias" : "winsso",
"name" : "WindowsSSO",
"configuration" : {
"authProtocol" : "Negotiate",
"pipeID" : "pipewinsso",
"successURL" : "/selfservice/"
}
}
Pipe
{
"id" : "pipewinsso",
"valves" : [ {
"name" : "LDAPSearchValve",
"config" : {
"connection_ref" : "local_ldap",
"base_dn" : "CN=Users,DC=company,DC=local",
"scope" : "SUB",
"size_limit" : 0,
"filter_template" : "(&(objectclass=person)(sAMAccountName={{request.username}}))",
"attributes" : "sAMAccountName"
}
} ]
}