Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix up configure&deploy #602

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/versioned_docs/version-v0.38/configure-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ We will be using [httpbin.org](https://httpbin.org) as the upstream server. The
service echoes incoming HTTP Requests and is perfect for seeing how ORY
Oathkeeper works. Let's define three rules:

1. An access rule that allowing anonymous access to
`https://httpbin.org/anything/cookie` and using the `cookie` mutator.
1. An access rule allowing anonymous access to
`https://httpbin.org/anything/header` using the `header` mutator.
2. An access rule denying every access to `https://httpbin.org/anything/deny`.
If the request header has `Accept: application/json`, we will receive a JSON
response. If however the accept header has `Accept: text/*`, a HTTP Redirect
will be sent (to `https://www.ory.sh/docs` as configured above).
3. An access rule allowing anonymous access to
`https://httpbin.org/anything/id_token` and using the `id_token` mutator.
`https://httpbin.org/anything/id_token` using the `id_token` mutator.

```shell
$ cat << EOF > rules.json
Expand Down