|
Home > Archive > Apache Server configuration support > May 2007 > help with authentication in the main config file
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
help with authentication in the main config file
|
|
| Jammer 2007-05-23, 7:22 pm |
|
I am trying to require authentication for a directory.
I put:
<Directory /home/rjl/public_html/resume/private>
AuthType Basic
AuthName "Password Required"
AuthUserFile /www_password.file
</Directory>
in the main config file but nothing is logged and I am not asked for a
userid/password.
| |
| John Clancy 2007-05-24, 1:22 pm |
| On Wed, 23 May 2007 19:11:04 -0400, Jammer <ask.me@mail.com> wrote:
>
>I am trying to require authentication for a directory.
>
>I put:
><Directory /home/rjl/public_html/resume/private>
> AuthType Basic
> AuthName "Password Required"
> AuthUserFile /www_password.file
></Directory>
>
>in the main config file but nothing is logged and I am not asked for a
>userid/password.
Look up the require directive in the Apache manual
JC
| |
| Jammer 2007-05-24, 1:23 pm |
| John Clancy wrote:
> On Wed, 23 May 2007 19:11:04 -0400, Jammer <ask.me@mail.com> wrote:
>
>
> Look up the require directive in the Apache manual
>
> JC
Thanks, got it working.
|
|
|
|
|