Skip to content

Commit

Permalink
docs: Add JWK set docs (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
arekkas authored Nov 20, 2017
1 parent f448908 commit 95abec8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,12 @@ create two files:
"effect": "allow",
"resources": [
"rn:hydra:warden:allowed",
"rn:hydra:warden:token:allowed"
"rn:hydra:warden:token:allowed",
"rn:hydra:keys:oathkeeper:id-token<.*>",
],
"actions": [
"decide"
"decide",
"get"
]
}
```
Expand All @@ -92,6 +94,9 @@ Now we are all set to boot up ORY Oathkeeper. Because we are using the in-memory
# We assume that ORY Hydra is running on localhost:4444
$ export HYDRA_URL=http://localhost:4444/
# ORY Oathkeeper stores the public/private key in ORY Hydra using this set id
export HYDRA_JWK_SET_ID=oathkeeper:id-token
# These are the values from the client.json file
$ export HYDRA_CLIENT_ID=oathkeeper-client
$ export HYDRA_CLIENT_SECRET=something-secure
Expand Down

0 comments on commit 95abec8

Please sign in to comment.