View Single Post
  #5  
Old March 18th, 2002, 04:57 AM
meancode meancode is offline
Registered User
 
Join Date: Nov 2001
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
meancode is on a distinguished road
what i do on my server to eleviate the need for .htpasswd and .htaccess files (for user authentication) is use thise code in the httpd.conf file (or what i like to do, include it, so it is nice and neat:

Code:
Alias /dev "/Volumes/Contents 2/Development"

<Directory "/Volumes/Contents 2/Development/">
  Options MultiViews
  AllowOverride None
  Order allow,deny
  Allow from all

  AuthName "Development Area"
  AuthType Basic
  <Limit GET HEAD OPTIONS CONNECT POST>
    Require group staff
  </Limit>
</Directory>
this binds the authentication to the staff group. also allows for a 'psudo realm' as the OSXS Server Admin app does not like to make realms outside the main Documents folder.
Reply With Quote