Re: [users@httpd] problem with require directive

2005-06-02 Thread Joshua Slive
On 6/2/05, Eric Brown <[EMAIL PROTECTED]> wrote: > 2. I'd like /svn to be read off of my document root /path/to/docroot. > > > Which I understood to mean that when I brought up my > page(www.mysite.com), it would display my doc root, > /absolute/path/to/docroot, and would use whatever options I p

Re: [users@httpd] problem with require directive

2005-06-02 Thread Eric Brown
My mistake. 1.I tried it again without my user name and using the directory tag. working well. Thank you. 2. I'd like /svn to be read off of my document root /path/to/docroot. Which I understood to mean that when I brought up my page(www.mysite.com), it would display my doc root, /absolute/pa

Re: [users@httpd] problem with require directive

2005-06-02 Thread Joshua Slive
On 6/2/05, Eric Brown <[EMAIL PROTECTED]> wrote: > Here's what worked: I put all of the Auth directives in a Directory tag > > > #how to authenticate a user > AuthType Basic > AuthName "Restricted Files" > AuthUserFile /etc/site-passwd > #Only authenticated users may have access > Re

Re: [users@httpd] problem with require directive

2005-06-02 Thread Eric Brown
Here's what worked: I put all of the Auth directives in a Directory tag #how to authenticate a user AuthType Basic AuthName "Restricted Files" AuthUserFile /etc/site-passwd #Only authenticated users may have access Require valid-user brownec I could only get the site to authentic

Re: [users@httpd] problem with require directive

2005-06-01 Thread Joshua Slive
On 6/1/05, Eric Brown <[EMAIL PROTECTED]> wrote: >Require valid-user brownec Hmmm... That doesn't make sense. You want either: # Let any user in Require valid-user # or let in only brownec Require user brownec Joshua. - The

[users@httpd] problem with require directive

2005-06-01 Thread Eric Brown
Hello- Trying to setup basic authentication. Using the following in my httpd.conf file: #how to authenticate a user AuthType Basic AuthName "Restricted Files" AuthUserFile /etc/site-passwd #Only authenticated users may have access Require valid-user brownec Here are the modu