On Dec 18, Jeff Sheffield wrote:
> Ok, essentially I want all but one directory on the
> server to be password protected.
> I want 1 directory to have the "I forgot my password"
> functionality.
> 
> I am using Mason.....
> and setting SetHandler default-handler has undesired results.
> i.e. mason files do not get parsed.
> Essentially I want to do this.
> Unset PerlAuthenHandler

well, not really, because that would still fail, since you "require
valid-user".

you can do it with this:

<Location /websites/foo.net/htdocs/passwd_forgoten/>
  order allow,deny
  allow from all
  satisfy any
</Location>

check the apache docs (http://httpd.apache.org/docs/) for
more on 'require' and 'satisfy'.

jim

Reply via email to