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 -> Apache View previous topic :: View next topic
Reply to topic   Topic: no auth in subfolder?
Author
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7373
Location: Germany, Next to Hamburg

PostPosted: Thu 26 Oct '06 11:06    Post subject: no auth in subfolder? Reply with quote

On a server is the webroot passwort protected (BASIC), how can I make a subfolder not to be protected?
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7373
Location: Germany, Next to Hamburg

PostPosted: Fri 04 Apr '08 20:28    Post subject: Reply with quote

I waited a long time Wink But I still have no idea yet.
Back to top
tdonovan
Moderator


Joined: 17 Dec 2005
Posts: 611
Location: Milford, MA, USA

PostPosted: Fri 04 Apr '08 21:34    Post subject: Reply with quote

There is an example of doing this in the docs for the Require directive:
Code:
<Directory /path/to/protected/>
    Require valid-user
</Directory>

<Directory /path/to/protected/unprotected>
# All access controls and authentication are disabled in this directory
    Satisfy Any
    Allow from all
</Directory>


-tom-
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7373
Location: Germany, Next to Hamburg

PostPosted: Fri 04 Apr '08 23:00    Post subject: Reply with quote

-.-' RTM! I should have known that!

Thank you!
Back to top


Reply to topic   Topic: no auth in subfolder? View previous topic :: View next topic
Post new topic   Forum Index -> Apache