ich steh hier gerade vor einem dicken Problem mit unseren SSO Anbindung.
Sobald ich im Webbrowser den Aufruf auf das OTRS starte erhalte ich immer noch einen vorgelagerte Anmeldemaske, zwar nicht das Orginal Login von OTRS aber diese Basic Authentification.
Wenn ich mich jedoch mit meinem Domainbenutzer und Passwort in der Basic Authenfication Maske anmelde erhalte ich automatisch meine OTRS Maske.
Hier der Code aus der otrs.conf
Code: Select all
# --
# added for OTRS (http://otrs.org/)
# $Id: apache2-httpd-new.include.conf,v 1.5 2008/11/10 11:08:55 ub Exp $
# --
# agent, admin and customer frontend
ScriptAlias /otrs/ "/opt/otrs/bin/cgi-bin/"
Alias /otrs-web/ "/opt/otrs/var/httpd/htdocs/"
# if mod_perl is used
<IfModule mod_perl.c>
# load all otrs modules
Perlrequire /opt/otrs/scripts/apache2-perl-startup.pl
# Apache::Reload - Reload Perl Modules when Changed on Disk
PerlModule Apache2::Reload
PerlInitHandler Apache2::Reload
PerlModule Apache2::RequestRec
# set mod_perl2 options
<Location /otrs>
# ErrorDocument 403 /otrs/customer.pl
ErrorDocument 403 /otrs/index.pl
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
Options +ExecCGI
PerlOptions +ParseHeaders
PerlOptions +SetupEnv
Order allow,deny
Allow from all
AuthType Kerberos
KrbAuthRealms DOMAIN.COM
KrbServiceName HTTP
Krb5Keytab /etc/apache2/keytabs/http.keytab
KrbMethodNegotiate on
KrbMethodK5Passwd off
require valid-user
</Location>
</IfModule>
# directory settings
<Directory "/opt/otrs/bin/cgi-bin/">
AllowOverride None
Options +ExecCGI -Includes
Order allow,deny
Allow from all
AuthType Kerberos
KrbAuthRealms DOMAIN.COM
KrbServiceName HTTP
Krb5Keytab /etc/apache2/keytabs/http.keytab
KrbMethodNegotiate on
KrbMethodK5Passwd off
require valid-user
</Directory>
<Directory "/opt/otrs/var/httpd/htdocs/">
AllowOverride None
Options +ExecCGI -Includes
Order allow,deny
Allow from all
AuthType Kerberos
KrbAuthRealms DOMAIN.COM
KrbServiceName HTTP
Krb5Keytab /etc/apache2/keytabs/http.keytab
KrbMethodNegotiate on
KrbMethodK5Passwd off
require valid-user
</Directory>
# MaxRequestsPerChild (so no apache child will be to big!)
MaxRequestsPerChild 400