Appendix B, ACL File Syntax
457
ACL File Syntax
Authentication Statements
ACLs can optionally specify the authentication method the server must use
when processing the ACL. There are two general methods:
•
Basic requires users to enter a username and password before accessing a
resource.
•
SSL requires the user to have a client certificate. For this method to work,
the web server must have encryption turned on, and the CA must be in the
list of trusted CAs.
By default, the server uses the Basic method for any ACL that doesn’t specify a
method. You can change the default setting by editing the following line in the
magnus.conf
file:
Init fn=acl-set-default-method method=SSL
Each authenticate line must specify what list (users, groups or both) the server
should use when authenticating users. The following authentication statement,
which would appear after the ACL type line, specifies basic authentication with
users matched to individual users in the database or directory:
authenticate (user) {
method = basic;
};
The following example uses SSL as the authentication method for users and
groups:
authenticate (user, group) {
method = ssl;
};
The following example allows any user whose username begins with the letters
sales
:
authenticate (user)
allow (all)
user = sales*
If the last line was changed to
group = sales
, then the ACL would fail
because there are no groups in the user lists.
Содержание Netscape Enterprise Server
Страница 30: ...Contacting Technical Support 30 Netscape Enterprise Server Administrator s Guide ...
Страница 31: ...Part 1 Server Basics 31 1 Server Basics Introduction to Enterprise Server Administering Enterprise Servers ...
Страница 32: ...32 Netscape Enterprise Server Administrator s Guide ...
Страница 56: ...Sending Error Information to Netscape 56 Netscape Enterprise Server Administrator s Guide ...
Страница 64: ...Migrating a Server From a Previous Version 64 Netscape Enterprise Server Administrator s Guide ...
Страница 66: ...66 Netscape Enterprise Server Administrator s Guide ...
Страница 112: ...Managing a Preferred Language List 112 Netscape Enterprise Server Administrator s Guide ...
Страница 158: ...158 Netscape Enterprise Server Administrator s Guide ...
Страница 182: ...Using the Watchdog uxwdog Process Unix 182 Netscape Enterprise Server Administrator s Guide ...
Страница 196: ...Viewing Events Windows NT 196 Netscape Enterprise Server Administrator s Guide ...
Страница 218: ...Enabling the Subagent 218 Netscape Enterprise Server Administrator s Guide ...
Страница 266: ...266 Netscape Enterprise Server Administrator s Guide ...
Страница 302: ...Enabling WAI Services 302 Netscape Enterprise Server Administrator s Guide ...
Страница 310: ...310 Netscape Enterprise Server Administrator s Guide ...
Страница 390: ...Customizing the Web Publisher User Interface 390 Netscape Enterprise Server Administrator s Guide ...
Страница 446: ...Customizing the Search Interface 446 Netscape Enterprise Server Administrator s Guide ...
Страница 448: ...448 Netscape Enterprise Server Administrator s Guide ...
Страница 454: ...Responses 454 Netscape Enterprise Server Administrator s Guide ...
Страница 464: ...Referencing ACL Files in obj conf 464 Netscape Enterprise Server Administrator s Guide ...
Страница 504: ...504 Netscape Enterprise Server Administrator s Guide ...