logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Third-party Modules View previous topic :: View next topic
Reply to topic   Topic: Path exclude for mod_auth_digest
Author
Qmpeltaty



Joined: 06 Feb 2008
Posts: 182
Location: Poland

PostPosted: Wed 08 Apr '15 14:08    Post subject: Path exclude for mod_auth_digest Reply with quote

I have location protected by mod_auth_digest

<Location /secured>
AuthType digest
AuthBasicAuthoritative Off
AuthName "secured"
AuthDigestProvider file
AuthUserFile "C:/Apache24/passwd/digest"
AuthDigestAlgorithm MD5
Require valid-user
</Location>

Is there any way to make an exception for /secured/public path to be accessible without password ?
Back to top
glsmith
Moderator


Joined: 16 Oct 2007
Posts: 2268
Location: Sun Diego, USA

PostPosted: Wed 08 Apr '15 16:25    Post subject: Reply with quote

I would think just overriding the Require valid-user should do, it's worth a try anyway.

<Location /secured/public>
Require all granted
</Location>
Back to top


Reply to topic   Topic: Path exclude for mod_auth_digest View previous topic :: View next topic
Post new topic   Forum Index -> Third-party Modules