[rt-users] External Authentication in RT??

Bruce Segal bsegal at DECARIE.COM
Tue Oct 21 12:34:29 EDT 2003


In short, yes. Various ways, mine is:
Searching through the archives will find other methods.

(httpd.conf below is for Apache 1.3.28 , modperl1)

<VirtualHost 10.1.1.3>
ServerName rt.xxxx.com
DocumentRoot /usr/local/www/data/rt3/share/html
AddDefaultCharset UTF-8

PerlModule Apache::DBI
PerlRequire /usr/local/www/data/rt3/bin/webmux.pl

<IfModule mod_rewrite.c>
         RewriteEngine On
         RewriteLog /var/log/apache/rewrite.log
         RewriteLogLevel 0
         RewriteRule ^/([0-9]+)$ /Ticket/Display.html?id=$1 [R] [L]
         RewriteRule ^/([^/.]+)$ /Search/Listing.html?ShowQueue=$1 [R] [L]
</IfModule>

<Location />
  AuthName "RT Authentication"
  AuthType Basic
  PerlSetVar LDAPServer nts009.xxx.com
  PerlSetVar LDAPPort 389
  PerlAuthenHandler Apache::AuthNetLDAP
  require valid-user
  Satisfy any
  order deny,allow
  allow from 127.0.0.1
 deny from all
 SetHandler perl-script
 PerlHandler RT::Mason
</Location>
</VirtualHost>




More information about the rt-users mailing list