Is this correct because i keep getting windows security login popup will not do sso
httpd.conf
<IfModule mod_auth_sspi.c>
#<Directory "C:/PROGRA~2/OTRS/OTRS/bin/cgi-bin/">
<Directory "C:/PROGRA~2/OTRS/Apache/cgi-bin/">
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIDomain seatow.com
SSPIUsernameCase lower
SSPIOfferBasic On
SSPIOmitDomain on
Require valid-user
AllowOverride None
Options +ExecCGI -Includes
Order allow,deny
Allow from all
</Directory>
</IfModule>
config.pm
# This is an example configuration for an apache ($ENV{REMOTE_USER})
# auth. backend. Use it if you want to have a singe login through
# apache http-basic-auth
$Self->{'Customer::AuthModule'} = 'Kernel::System::CustomerAuth::HTTPBasicAuth';
$Self->{'Customer::AuthModule::HTTPBasicAuth::ReplaceRegExp'} = '@xxxxx.xxx\\';
# Note:
# If you use this module, you should use the following
# config settings as fallback, if user isn't login through
# apache ($ENV{REMOTE_USER})
$Self->{CustomerPanelLoginURL} = 'http://xxxxxx.xxxx';
$Self->{CustomerPanelLogoutURL} = 'http://xxx.xxx.xxx.xxx/otrs/cutomer.pl';
sso
Moderator: crythias