forked from mystiq/dex
example: add grpc example
This commit is contained in:
parent
4550b95dfd
commit
29864f0ccb
1 changed files with 29 additions and 0 deletions
29
examples/config-grpc.yaml
Normal file
29
examples/config-grpc.yaml
Normal file
|
@ -0,0 +1,29 @@
|
|||
issuer: http://127.0.0.1:5556
|
||||
storage:
|
||||
type: sqlite3
|
||||
config:
|
||||
file: examples/dex.db
|
||||
|
||||
web:
|
||||
http: 127.0.0.1:5556
|
||||
|
||||
grpc:
|
||||
addr: 127.0.0.1:5557
|
||||
|
||||
connectors:
|
||||
- type: mockCallback
|
||||
id: mock-callback
|
||||
name: Mock
|
||||
- type: mockPassword
|
||||
id: mock-password
|
||||
name: Password
|
||||
config:
|
||||
username: "admin"
|
||||
password: "PASSWORD"
|
||||
|
||||
staticClients:
|
||||
- id: example-app
|
||||
redirectURIs:
|
||||
- 'http://127.0.0.1:5555/callback'
|
||||
name: 'Example App'
|
||||
secret: ZXhhbXBsZS1hcHAtc2VjcmV0
|
Loading…
Reference in a new issue