Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 44260 invoked from network); 13 Aug 2007 16:05:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Aug 2007 16:05:45 -0000 Received: (qmail 30210 invoked by uid 500); 13 Aug 2007 16:05:33 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 30192 invoked by uid 500); 13 Aug 2007 16:05:33 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 30181 invoked by uid 99); 13 Aug 2007 16:05:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Aug 2007 09:05:33 -0700 X-ASF-Spam-Status: No, hits=3.5 required=10.0 tests=HTML_MESSAGE,NORMAL_HTTP_TO_IP,SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of joiey.seeley@gmail.com designates 64.233.162.239 as permitted sender) Received: from [64.233.162.239] (HELO nz-out-0506.google.com) (64.233.162.239) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Aug 2007 16:05:29 +0000 Received: by nz-out-0506.google.com with SMTP id l1so496748nzf for ; Mon, 13 Aug 2007 09:05:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=VvFkccXvu1WYenJPUZhknEGJ+wK7wpbXQvue2r5WqKivBKwoNMKoyVqCwY6WVXc2qCThxn7KV3BnP9eJpzFwMCtSZkAiC66WP4RXcIgtw++JAll6jVL9od8iTFEqz26YJyVmIilT3QaEsZVcv8Bz6BB+gsYy5GQHmh3sYXVWLcg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=rQWPyhUtdgAS87C7410RjkGdvKiwhg7e0AQ6j1V7vr2lGoNd8EpTwhpPbr3AgHYkjyCxWOlxTWNcxhdJUqsY9XJMpjuuWi4zJN/y2+q6vaQ1Xi1VdbezsRzCHNMsBCZjDVXp6M1ZIyZcX4Au6FNPETktSKeM3ppzGv48xEwReKk= Received: by 10.114.177.1 with SMTP id z1mr2802097wae.1187021107503; Mon, 13 Aug 2007 09:05:07 -0700 (PDT) Received: by 10.114.132.7 with HTTP; Mon, 13 Aug 2007 09:05:07 -0700 (PDT) Message-ID: <5d0946540708130905o6fc58abcu6c20a2a9e97dd310@mail.gmail.com> Date: Mon, 13 Aug 2007 11:05:07 -0500 From: "Joe Seeley" To: users@httpd.apache.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_190602_22894239.1187021107477" X-Virus-Checked: Checked by ClamAV on apache.org Subject: [users@httpd] Authentication prompts multiple times for login ------=_Part_190602_22894239.1187021107477 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I am trying to use Apache LDAP authentication and proxying to make sure users exist in our LDAP repository. This is working, but the user is always prompted to login multiple times. In Firefox the users are prompted twice for their login; in IE the users are prompted three times for their login. My conf file looks something like this. ProxyRequests Off ProxyPass / http://localhost:5000/ ProxyPassReverse / http://localhost:5000 ProxyHTMLURLMap http://localhost:5000 http://1.2.3.4 ProxyHTMLURLMap http://localhost:5000 http://1.2.3.5 ProxyPassReverse http://localhost:5000 SetOutputFilter proxy-html ProxyHTMLURLMap / / AuthLDAPEnabled on AuthLDAPAuthoritative on AuthLDAPURL "ladp://myserver:3268/DC=FOO,DC=BAR,DC=COM?sAMAccountName?sub?" AuthLDAPBindDN 'ldapuser@foo.bar.com" AuthLDAPBindPassword "password" AuthType Basic AuthName "Login in using your domain login." require valid-user If you see a mistake in my conf file, or understand why this is prompting for multiple logins I would appreciate any advice. Thanks, Joe ------=_Part_190602_22894239.1187021107477 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I am trying to use Apache LDAP authentication and proxying to make sure users exist in our LDAP repository.  This is working, but the user is always prompted to login multiple times.  In Firefox the users are prompted twice for their login; in IE the users are prompted three times for their login.

My conf file looks something like this.

ProxyRequests Off
ProxyPass / http://localhost:5000/
ProxyPassReverse / http://localhost:5000
ProxyHTMLURLMap http://localhost:5000 http://1.2.3.4
ProxyHTMLURLMap http://localhost:5000 http://1.2.3.5

<Location />
  ProxyPassReverse http://localhost:5000
  SetOutputFilter proxy-html
  ProxyHTMLURLMap /     /
  AuthLDAPEnabled on
  AuthLDAPAuthoritative on
  AuthLDAPURL "ladp://myserver:3268/DC=FOO,DC=BAR,DC=COM?sAMAccountName?sub?"
  AuthLDAPBindDN 'ldapuser@foo.bar.com"
  AuthLDAPBindPassword "password"
  AuthType Basic
  AuthName "Login in using your domain login."
  require valid-user
</Location>

If you see a mistake in my conf file, or understand why this is prompting for multiple logins I would appreciate any advice.

Thanks,
         Joe
------=_Part_190602_22894239.1187021107477--