mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-15 09:48:18 -07:00
docs: add FAQ
This commit is contained in:
parent
acef61a3cc
commit
a499c80d1b
@ -10,3 +10,4 @@
|
|||||||
- [NixOS](deploying/nixos.md)
|
- [NixOS](deploying/nixos.md)
|
||||||
- [TURN](turn.md)
|
- [TURN](turn.md)
|
||||||
- [Appservices](appservices.md)
|
- [Appservices](appservices.md)
|
||||||
|
- [FAQ](faq.md)
|
||||||
|
25
docs/faq.md
Normal file
25
docs/faq.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# FAQ
|
||||||
|
|
||||||
|
Here are some of the most frequently asked questions about Conduit, and their answers.
|
||||||
|
|
||||||
|
## Why do I get a `M_INCOMPATIBLE_ROOM_VERSION` error when trying to join some rooms?
|
||||||
|
|
||||||
|
Conduit doesn't support room versions 1 and 2 at all, and doesn't properly support versions 3-5 currently. You can track the progress of adding support [here](https://gitlab.com/famedly/conduit/-/issues/433).
|
||||||
|
|
||||||
|
## How do I setup sliding sync?
|
||||||
|
|
||||||
|
You need to add a `org.matrix.msc3575.proxy` field to your `.well-known/matrix/client` response which points to Conduit. Here is an example:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"m.homeserver": {
|
||||||
|
"base_url": "https://matrix.example.org"
|
||||||
|
},
|
||||||
|
"org.matrix.msc3575.proxy": {
|
||||||
|
"url": "https://matrix.example.org"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Can I migrate from Synapse to Conduit?
|
||||||
|
|
||||||
|
Not really. You can reuse the domain of your current server with Conduit, but you have to leave all federated rooms first.
|
Loading…
Reference in New Issue
Block a user