[rt-users] rt3, external auth, httpd.conf

Richard de Jong richard.de.jong at framfab.nl
Thu Apr 24 03:51:15 EDT 2003


Hi Carrie,

I came across the same problem, and this works for me (Apache 1.3),
"LocationMatch" does the trick.


<VirtualHost *>
    AddDefaultCharset UTF-8

    PerlModule Apache::DBI
    PerlRequire /opt/rt3/bin/webmux.pl

    <Location />
        SetHandler perl-script
        PerlHandler RT::Mason
    </Location>
    <LocationMatch "/NoAuth">
        Satisfy Any
        Allow from all
    </LocationMatch>
    <Directory "/opt/rt3/share/html">
        AuthPAM_Enabled On
        AuthPAM_FallThrough On
        AuthType Basic
        AuthName "Log in using NT account"
        require valid-user
    </Directory>
</VirtualHost>

-----Original Message-----
From: CARRIE COY [mailto:ccoy at ssww.com]
Sent: woensdag 23 april 2003 19:06
To: rt-users
Subject: [rt-users] rt3, external auth, httpd.conf


What is the httpd.conf entry supposed to look like if one is using 
external authentication?  

The webu ui works fine with the entry below, but mailgate fails with a 
"404 Authentication Error".  If I remove the authentication lines, 
 mailgate works but then I'm not using external authentication...

How can I exempt the "NoAuth" documents from Apache authentication  ????????

DocumentRoot /usr/local/rt3/share/html
ErrorLog /usr/local/apache/logs/rterror_log
CustomLog /usr/local/apache/logs/rtaccess_log combined
AddDefaultCharset UTF-8
ServerName innuendo.ssww.com
PerlModule Apache::DBI
PerlRequire /usr/local/rt3/bin/webmux.pl
<Location />
  SetHandler perl-script
  PerlHandler RT::Mason
 AuthName "Login"
 AuthType Basic
 PerlSetVar BaseDN dc=ssww,dc=com
 PerlSetVar LDAPServer ldap.ssww.com
 PerlAuthenHandler Apache::AuthLDAP
 require valid-user
</Location>

-- 
Carrie Coy
S&S Worldwide
(860) 537-3451 x2357


_______________________________________________
rt-users mailing list
rt-users at lists.fsck.com
http://lists.fsck.com/mailman/listinfo/rt-users

Have you read the FAQ? The RT FAQ Manager lives at http://fsck.com/rtfm



More information about the rt-users mailing list