|
@@ -69,6 +69,19 @@ changed with `--port`.
|
|
|
$UIDC server
|
|
|
```
|
|
|
|
|
|
+#### Realms ####
|
|
|
+
|
|
|
+uidc implements 'realms', or independent authentication domains. By default,
|
|
|
+everything is in the `primary` realm, but you can switch to another realm with
|
|
|
+`-r`. For example:
|
|
|
+
|
|
|
+```shell
|
|
|
+$UIDC realm create secondary
|
|
|
+$UIDC -r secondary user create someuser
|
|
|
+```
|
|
|
+
|
|
|
+Each realm has its own set of users, groups, roles, and clients.
|
|
|
+
|
|
|
#### RBAC ####
|
|
|
|
|
|
uidc implements a simple role-based authentication schema. it works as follows:
|