...
Parameter | Default Value | Description |
---|---|---|
|
| The name of the role that has administration privileges. |
|
| The username of the user. |
|
| The Base64(UTF-8) encrypted password of the user. |
|
| A comma separated list of the IDs of the roles assigned to the user. |
| 1 | The unique ID for the role. |
userManager > userStore > roles > role > admin | admin | The name of the role. |
...
Code Block |
---|
auth.configs: type: local proertiesproperties: sessionTimeout: 3600 refreshSessionTimeout: 86400 |
...
Code Block |
---|
auth.configs: type: 'local' proertiesproperties: sessionTimeout: 3600 refreshSessionTimeout: 86400 userManager: adminRole: admin userStore: users: - user: username: admin password: YWRtaW4= roles: 1 roles: - role: id: 1 displayName: admin |
...