Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
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.
| |
|
Topic: Path exclude for mod_auth_digest |
|
Author |
|
Qmpeltaty
Joined: 06 Feb 2008 Posts: 182 Location: Poland
|
Posted: Wed 08 Apr '15 14:08 Post subject: Path exclude for mod_auth_digest |
|
|
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
|
Posted: Wed 08 Apr '15 16:25 Post subject: |
|
|
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 |
|
|
|
|
|
|