You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/oauth2-examples-okta.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ to groups and users.
70
70
71
71
:::
72
72
73
-
Finally, click on **Save** and write down the following values.
73
+
Finally, click on **Save** and write down the following values:
74
74
75
75
:::tip
76
76
Take note of this value, as you will need them later to configure RabbitMQ:
@@ -198,13 +198,14 @@ Edit `rabbitmq.conf` and proceed as follows:
198
198
1. Replace `{okta_client_app_ID}` with your **okta_client_app_ID**
199
199
2. Replace `{okta-issuer}` with your **okta-Issuer**
200
200
3. Ensure **okta-Metadata-URI** matches this value `{okta-issuer}/.well-known/oauth-authorization-server`
201
-
4. Else remove the {okta-issuer} from the {okta-Metadata-URI} and use result to update
202
-
`auth_oauth2.discovery_endpoint_path`
201
+
or `{okta-issuer}/.well-known/openid-configuration`
202
+
4. Else you need to determine the path that follows the uri in `{okta-issuer}` and update
203
+
`auth_oauth2.discovery_endpoint_path` accordingly. For instance, if **okta-Metadata-URI** is `{okta-issuer}/some-other-endpoint`, you update `auth_oauth2.discovery_endpoint_path` with the value `some-other-endpoint`.
203
204
204
205
205
206
### About OpenId Discovery Endpoint
206
207
207
-
RabbitMQ uses the standard OpenId discovery endpoint path `./well-known/openid-configuration`. Okta supports this path in addition to `.well-known/oauth-authorization-server`. The only difference observed at the time of writing this guide is that the latter returns more values in the json attribute `claims_supported`.
208
+
RabbitMQ uses the standard OpenId discovery endpoint path `.well-known/openid-configuration`. Okta supports this path in addition to `.well-known/oauth-authorization-server`. The only difference observed at the time of writing this guide is that the latter returns more values in the json attribute `claims_supported`.
208
209
209
210
The RabbitMQ's template configuration provided in this example has this line commented out meaning that
210
211
RabbitMQ will use the standard path. If you find any problems, try uncommenting this line.
@@ -223,8 +224,7 @@ make start-rabbitmq
223
224
224
225
## Verify RabbitMQ Management UI Access
225
226
226
-
Go to RabbitMQ Management UI `https://localhost:15671`. Depending on your browser, ignore the security warnings (raised by the fact that a [self-signed certificate](./ssl#peer-verification) is used)
227
-
to proceed.
227
+
Go to RabbitMQ Management UI `https://localhost:15671`. Depending on your browser, ignore the security warnings (raised by the fact that a [self-signed certificate](./ssl#peer-verification) is used) to proceed.
228
228
229
229
Once on the RabbitMQ Management UI page, click on the **Click here to log in** button,
0 commit comments