I think that's what I'm looking for, although it doesn't seem to work.
There are no errors, the authentication prompt just remains after apache is
restarted.
I am testing on a box using Basic auth, with the following file in
/etc/apache2/sites-enabled:
<VirtualHost *>
ServerAdmin [EMAIL PROTECTED]
ServerName dev
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
DocumentRoot /home/users/mmcdonald/drupal
<Location /node/feed>
Order allow,deny
Allow from any
Satisfy any
</Location>
<Directory /home/users/mmcdonald/drupal/>
AuthType Basic
AuthName "LDAP Authentication Required"
AuthLDAPURL <removed>
AuthLDAPBindDN <removed>
AuthLDAPBindPassword <removed>
require valid-user
Options +FollowSymLinks
AllowOverride All
order allow,deny
allow from all
RewriteBase /
</Directory>
</VirtualHost>
-----Original Message-----
From: Eric Covener [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 6 May 2008 9:19 PM
To: [email protected]
Subject: Re: [EMAIL PROTECTED] Unsecuring a URL
On Tue, May 6, 2008 at 3:43 AM, Mark Mcdonald
<[EMAIL PROTECTED]> wrote:
> What I want to do is remove authentication from a specific URL, namely the
> RSS path: http://server/node/feed (index.php?q=node/feed).
Have you tried <Location /node/feed> and something like the recipe here:
http://wiki.apache.org/httpd/BypassAuthenticationOrAuthorizationRequirements
--
Eric Covener
[EMAIL PROTECTED]
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]