-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,29 +75,29 @@ CLIENT_ID=web CLIENT_SECRET=secret ISSUER=http://oidc.local:9998/ SCOPES="openid | |
Example server allows extra configuration using environment variables and could be used for end to | ||
end testing of your services. | ||
|
||
| Name | Format | Description | | ||
|---------------|--------------------------------------|---------------------------------------| | ||
| PORT | Number between 1 and 65535 | OIDC listen port | | ||
| REDIRECT_URI | Comma-separated URIs | List of allowed redirect URIs | | ||
| USERS_FILE | Path to json in local filesystem | Users with their data and credentials | | ||
| Name | Format | Description | | ||
|---------------|--------------------------------------|---------------------------------------| | ||
| PORT | Number between 1 and 65535 | OIDC listen port | | ||
| REDIRECT_URI | Comma-separated URIs | List of allowed redirect URIs | | ||
| USERS_FILE | Path to json in local filesystem | Users with their data and credentials | | ||
|
||
Here is json equivalent for one of the default users | ||
```json | ||
{ | ||
"id2": { | ||
"ID": "id2", | ||
"Username": "test-user2", | ||
"Password": "verysecure", | ||
"FirstName": "Test", | ||
"LastName": "User2", | ||
"Email": "[email protected]", | ||
"EmailVerified": true, | ||
"Phone": "", | ||
"PhoneVerified": false, | ||
"PreferredLanguage": "DE", | ||
"IsAdmin": false | ||
} | ||
} | ||
```json | ||
{ | ||
"id2": { | ||
"ID": "id2", | ||
"Username": "test-user2", | ||
"Password": "verysecure", | ||
"FirstName": "Test", | ||
"LastName": "User2", | ||
"Email": "[email protected]", | ||
"EmailVerified": true, | ||
"Phone": "", | ||
"PhoneVerified": false, | ||
"PreferredLanguage": "DE", | ||
"IsAdmin": false | ||
} | ||
} | ||
``` | ||
|
||
## Features | ||
|