Documentation updates:

- Try to explain better that werc expects Plan 9 tools in /usr/local/plan9/bin/
- Note possible bug.
- Other small doc changes.
This commit is contained in:
Uriel 2011-06-28 01:50:24 +00:00
parent 99fdff82ef
commit 640aa2f900
5 changed files with 27 additions and 3 deletions

View file

@ -52,9 +52,17 @@ Access Control and Permissions
The permissions system is very flexible, for example to only allow access to members of the group 'editors' you can do something like:
if(! check_user editors)
perm_redirect /_users/login
switch ($req_path) {
case /_users/login
case /pub/*
case /robots.txt
case *
if(! check_user editors)
perm_redirect /_users/login
}
To automatically redirect users without permission to the login page if they are not members of the group 'editors'.
See also [the documentation on user and group management](user_management).