Skip to content

Commit 25d3dbd

Browse files
authored
Simplify the setup documentation introduction (#3994)
2 parents 358fd92 + da944cc commit 25d3dbd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/setup/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ By default, the `issuer` will match the root domain where the service is deploye
1919
An example setup could look like this:
2020

2121
- The deployment domain is `example.com`, so Matrix IDs look like `@user:example.com`
22-
- The issuer chosen is `https://example.com/`
22+
- The issuer chosen is `https://auth.example.com/`
2323
- The homeserver is deployed on `matrix.example.com`
2424
- The authentication service is deployed on `auth.example.com`
2525
- Calling `https://example.com/.well-known/matrix/client` returns the following JSON:
@@ -30,17 +30,17 @@ An example setup could look like this:
3030
"base_url": "https://matrix.example.com"
3131
},
3232
"org.matrix.msc2965.authentication": {
33-
"issuer": "https://example.com/",
33+
"issuer": "https://auth.example.com/",
3434
"account": "https://auth.example.com/account"
3535
}
3636
}
3737
```
3838

39-
- Calling `https://example.com/.well-known/openid-configuration` returns a JSON document similar to the following:
39+
- Calling `https://auth.example.com/.well-known/openid-configuration` returns a JSON document similar to the following:
4040

4141
```json
4242
{
43-
"issuer": "https://example.com/",
43+
"issuer": "https://auth.example.com/",
4444
"authorization_endpoint": "https://auth.example.com/authorize",
4545
"token_endpoint": "https://auth.example.com/oauth2/token",
4646
"jwks_uri": "https://auth.example.com/oauth2/keys.json",

0 commit comments

Comments
 (0)