1
0
mirror of https://github.com/tinode/chat.git synced 2025-03-15 18:53:05 +00:00

mention that "rest" auth must be disabled when using logical renaming

This commit is contained in:
or-else
2021-12-26 14:27:51 -08:00
parent 1bb4b68185
commit 24c6f3b6ed

@ -69,11 +69,11 @@ Add the following section to the `auth_config` in [tinode.conf](../../tinode.con
},
```
If you want to use your authenticator **instead** of stock `basic` (login-password) authentication,
add a logical renaming:
add logical renaming and disable `rest` at the original name:
```js
...
"auth_config": {
"logical_names": ["basic:rest"],
"logical_names": ["basic:rest", "rest:"],
"rest": { ... },
...
},
@ -224,7 +224,7 @@ be used by client (Tinode) to create the account. The server may optionally retu
"anon": "N",
"public": {/* see /docs/API.md#public-and-private-fields */},
"private": {/* see /docs/API.md#public-and-private-fields */}
}
}
}
```