diff --git a/docs/features/authentication.md b/docs/features/authentication.md index 9336a66..28a6559 100644 --- a/docs/features/authentication.md +++ b/docs/features/authentication.md @@ -49,10 +49,10 @@ An overview of the Basic Authentication process: | user profiles | If valid credentials and supported by Identity store(s) +--------------------------+ ``` -Performed on [synapse with REST auth module](https://github.com/kamax-io/matrix-synapse-rest-auth/blob/master/README.md) +Performed on [synapse with REST auth module](https://github.com/ma1uta/matrix-synapse-rest-password-provider/blob/master/README.md) ### Synapse -- Install the [password provider](https://github.com/kamax-io/matrix-synapse-rest-auth) +- Install the [password provider](https://github.com/ma1uta/matrix-synapse-rest-password-provider) - Edit your **synapse** configuration: - As described by the auth module documentation - Set `endpoint` to `http://ma1sdAddress:8090` - Replace `ma1sdAddress` by an IP/host name that provides a direct diff --git a/docs/getting-started.md b/docs/getting-started.md index ae32361..b27bc8f 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -32,7 +32,7 @@ If you use synapse: For maximum integration, it is best to have your Homeserver and ma1sd reachable via the same public hostname. -Be aware of a [NAT/Reverse proxy gotcha](https://github.com/kamax-matrix/ma1sd/wiki/Gotchas#nating) if you use the same +Be aware of a [NAT/Reverse proxy gotcha](https://github.com/ma1uta/ma1sd/wiki/Gotchas#nating) if you use the same host. The following Quick Start guide assumes you will host the Homeserver and ma1sd under the same hostname. diff --git a/docs/install/docker.md b/docs/install/docker.md index 2e5067d..fdc2d01 100644 --- a/docs/install/docker.md +++ b/docs/install/docker.md @@ -8,7 +8,7 @@ ## Fetch Pull the latest stable image: ```bash -docker pull kamax/ma1sd +docker pull ma1uta/ma1sd ``` ## Configure @@ -22,10 +22,10 @@ Use the following command after adapting to your needs: - The volumes host paths ```bash -docker run --rm -e MATRIX_DOMAIN=example.org -v /data/ma1sd/etc:/etc/ma1sd -v /data/ma1sd/var:/var/ma1sd -p 8090:8090 -t kamax/ma1sd +docker run --rm -e MATRIX_DOMAIN=example.org -v /data/ma1sd/etc:/etc/ma1sd -v /data/ma1sd/var:/var/ma1sd -p 8090:8090 -t ma1uta/ma1sd ``` -For more info, including the list of possible tags, see [the public repository](https://hub.docker.com/r/kamax/mxisd/) +For more info, including the list of possible tags, see [the public repository](https://hub.docker.com/r/ma1uta/ma1sd/) ## Troubleshoot Please read the [Troubleshooting guide](../troubleshooting.md).