home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 March
/
PCWK0397.iso
/
novell
/
webserv3
/
disk1
/
web
/
samples
/
config
/
access.www
< prev
next >
Wrap
Text File
|
1996-05-03
|
3KB
|
74 lines
# access.www
#
# Please DO NOT use TAB charaters when editing this file.
#
# This file provides local configuration of the web server's access control
# system. You can implement the access restriction of a document directory
# by simply having this local access control file in that directory.
# The default name for these local control files is 'access.www'
# and it can be set by the 'AccessFileName' in the resource configuration
# file: 'srm.cfg'.
#
# Please refer to the User Acess Control section of the readme.txt file
# for additional relevent information.
#
# This example demonstrates the use of an NDS group and a list of NDS users
# for the authentication list.
#
# In the global access control files, access.cfg, one should not specifiy
# NDS groups and NDS users at the same time, but you can do that in this file.
# Although The access.www can support both NDS groups and NDS users at
# the same time, this combination must be handled with care. The context
# specified in both AuthUserMethod and AuthGroupMethod lines should be
# identical to minimize confusion.
#
# Syntax:
#
# AuthType Basic <== Keyword, don't change
#
# AuthName name
# name can be any descriptive name that the Browser will display.
# One can take advantage of this line to show the context specified
# in AuthUserMethod/AuthGroupMethod so those user who belongs to the
# specified context would know that they don't have to type the
# fully-qualified user name.
#
# AuthUserMethod NDS .ou1.ou2...o
# This signifies that NDS users will be specified in the access list.
# The NDS fully-qualified parameter must be a container object.
# NOTE THE LEADING PERIOD. IT IS REQUIRED.
# For users in the access list (Require User list) that belongs to
# this specified container context, they do not have to key in the
# fully-qualified name when prompted for user name and password.
#
# AuthGroupMethod NDS .ou1.ou2...o
# This signifies that NDS groups will be specified in the access list.
# The NDS fully-qualified parameter must be a container object.
# NOTE THE LEADING PERIOD. IT IS REQUIRED.
# For users in the specified group (Require Group) that belongs to
# this specified container context, they do not have to key in the
# fully-qualified name when prompted for user name and password.
#
# require user user1 user2 ...
# Specifies that one or more NDS users in the access list.
# user* is the name of the user. If the user NDS context is already
# defined in the AuthUserMethod line, then only the relative name needs
# to be specified. It the user belongs to another NDS context, then
# the fully-qualified NDS name mut be specified (with the leading dot).
#
# require group gname1 gname2 ...
# Specifies that one or more NDS groups in the access list.
# gname* is the name of the group. The group name should be a
# fully-qualified NDS name (with the leading dot).
#
AuthType Basic
AuthName DOCS\ENGR(default context: .eng.icd.novell)
AuthUserMethod NDS .eng.icd.novell
AuthGroupMethod NDS .eng.icd.novell
<Limit GET>
require user mel .sally.mgnt.icd.novell
require group .group1.icd.novell
require group .techies.eng.icd.novell
</Limit>