forked from mystiq/dex
Merge pull request #544 from ericchiang/fix-client-secrets-in-examples
*: update examples to hold valid client secrets for no-db mode
This commit is contained in:
commit
882ced4213
2 changed files with 3 additions and 3 deletions
|
@ -46,7 +46,7 @@ When establishing connection to the server, we will need to provide the CA file
|
|||
./bin/example-app \
|
||||
--trusted-ca-file=examples/tls-setup/certs/ca.pem \
|
||||
--client-id="XXX" \
|
||||
--client-secret="secrete" \
|
||||
--client-secret="c2VjcmV0ZQ==" \
|
||||
--redirect-url="http://127.0.0.1:5555/callback" \
|
||||
--discovery="https://127.0.0.1:5556" \
|
||||
--listen="http://127.0.0.1:5555"
|
||||
|
|
|
@ -34,7 +34,7 @@ supplying the client information from `./static/fixtures/clients.json` into the
|
|||
```console
|
||||
./bin/example-app \
|
||||
--client-id=example-app \
|
||||
--client-secret=example-app-secret \
|
||||
--client-secret=eZXhhbXBsZS1jbGktc2VjcmV0 \
|
||||
--discovery=http://127.0.0.1:5556
|
||||
```
|
||||
|
||||
|
@ -54,6 +54,6 @@ The example CLI will start, connect to the Dex instance to gather discovery info
|
|||
```console
|
||||
./bin/example-cli \
|
||||
--client-id example-cli \
|
||||
--client-secret examplie-cli-secret \
|
||||
--client-secret ZXhhbXBsZS1jbGktc2VjcmV0 \
|
||||
--discovery=http://127.0.0.1:5556
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue