1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-06-26 07:58:17 +02:00
conduit/DEPLOY.md

268 lines
9.1 KiB
Markdown
Raw Normal View History

2021-01-01 13:47:53 +01:00
# Deploying Conduit
2022-02-04 17:57:59 +01:00
> ## Getting help
>
> If you run into any problems while setting up Conduit, write an email to `timo@koesters.xyz`, ask us
> in `#conduit:fachschaften.org` or [open an issue on GitLab](https://gitlab.com/famedly/conduit/-/issues/new).
2021-01-01 13:47:53 +01:00
## Installing Conduit
Although you might be able to compile Conduit for Windows, we do recommend running it on a linux server. We therefore
only offer Linux binaries.
You may simply download the binary that fits your machine. Run `uname -m` to see what you need. Now copy the right url:
2022-02-04 17:57:59 +01:00
| CPU Architecture | Download stable version | Download development version |
| ------------------------------------------- | ------------------------------ | ---------------------------- |
| x84_64 / amd64 (Most servers and computers) | [Download][x84_64-musl-master] | [Download][x84_64-musl-next] |
| armv6 | [Download][armv6-musl-master] | [Download][armv6-musl-next] |
| armv7 (e.g. Raspberry Pi by default) | [Download][armv7-musl-master] | [Download][armv7-musl-next] |
| armv8 / aarch64 | [Download][armv8-musl-master] | [Download][armv8-musl-next] |
2021-11-25 23:36:44 +01:00
[x84_64-musl-master]: https://gitlab.com/famedly/conduit/-/jobs/artifacts/master/raw/conduit-x86_64-unknown-linux-musl?job=build:release:cargo:x86_64-unknown-linux-musl
[armv6-musl-master]: https://gitlab.com/famedly/conduit/-/jobs/artifacts/master/raw/conduit-arm-unknown-linux-musleabihf?job=build:release:cargo:arm-unknown-linux-musleabihf
[armv7-musl-master]: https://gitlab.com/famedly/conduit/-/jobs/artifacts/master/raw/conduit-armv7-unknown-linux-musleabihf?job=build:release:cargo:armv7-unknown-linux-musleabihf
[armv8-musl-master]: https://gitlab.com/famedly/conduit/-/jobs/artifacts/master/raw/conduit-aarch64-unknown-linux-musl?job=build:release:cargo:aarch64-unknown-linux-musl
2022-02-04 17:57:59 +01:00
[x84_64-musl-next]: https://gitlab.com/famedly/conduit/-/jobs/artifacts/next/raw/conduit-x86_64-unknown-linux-musl?job=build:release:cargo:x86_64-unknown-linux-musl
[armv6-musl-next]: https://gitlab.com/famedly/conduit/-/jobs/artifacts/next/raw/conduit-arm-unknown-linux-musleabihf?job=build:release:cargo:arm-unknown-linux-musleabihf
[armv7-musl-next]: https://gitlab.com/famedly/conduit/-/jobs/artifacts/next/raw/conduit-armv7-unknown-linux-musleabihf?job=build:release:cargo:armv7-unknown-linux-musleabihf
[armv8-musl-next]: https://gitlab.com/famedly/conduit/-/jobs/artifacts/next/raw/conduit-aarch64-unknown-linux-musl?job=build:release:cargo:aarch64-unknown-linux-musl
2020-10-20 14:18:20 +02:00
```bash
$ sudo wget -O /usr/local/bin/matrix-conduit <url>
$ sudo chmod +x /usr/local/bin/matrix-conduit
```
Alternatively, you may compile the binary yourself
```bash
$ sudo apt install libclang-dev build-essential
```
```bash
$ cargo build --release
```
Note that this currently requires Rust 1.50.
If you want to cross compile Conduit to another architecture, read the [Cross-Compile Guide](cross/README.md).
## Adding a Conduit user
While Conduit can run as any user it is usually better to use dedicated users for different services. This also allows
you to make sure that the file permissions are correctly set up.
In Debian you can use this command to create a Conduit user:
```bash
sudo adduser --system conduit --no-create-home
```
2022-06-13 20:45:12 +02:00
## Forwarding ports in the firewall or the router
2022-06-13 20:08:18 +02:00
Conduit uses the ports 443 and 8448 both of which need to be open in the firewall.
2022-06-13 20:45:12 +02:00
If Conduit runs behind a router or in a container and has a different public IP address than the host system these public ports need to be forwarded directly or indirectly to the port mentioned in the config.
2022-06-13 20:08:18 +02:00
2021-01-01 13:47:53 +01:00
## Setting up a systemd service
Now we'll set up a systemd service for Conduit, so it's easy to start/stop Conduit and set it to autostart when your
server reboots. Simply paste the default systemd service you can find below into
2021-01-01 13:47:53 +01:00
`/etc/systemd/system/conduit.service`.
```systemd
[Unit]
2021-01-01 13:47:53 +01:00
Description=Conduit Matrix Server
After=network.target
[Service]
2021-01-01 13:47:53 +01:00
Environment="CONDUIT_CONFIG=/etc/matrix-conduit/conduit.toml"
User=conduit
Group=nogroup
Restart=always
2021-01-01 13:47:53 +01:00
ExecStart=/usr/local/bin/matrix-conduit
[Install]
WantedBy=multi-user.target
```
Finally, run
```bash
$ sudo systemctl daemon-reload
```
2021-01-01 13:47:53 +01:00
## Creating the Conduit configuration file
Now we need to create the Conduit's config file in `/etc/matrix-conduit/conduit.toml`. Paste this in **and take a moment
to read it. You need to change at least the server name.**
2021-01-01 13:47:53 +01:00
```toml
[global]
2022-02-12 10:29:04 +01:00
# The server_name is the pretty name of this server. It is used as a suffix for user
2021-01-01 13:47:53 +01:00
# and room ids. Examples: matrix.org, conduit.rs
2022-02-12 10:29:04 +01:00
# The Conduit server needs all /_matrix/ requests to be reachable at
# https://your.server.name/ on port 443 (client-server) and 8448 (federation).
# If that's not possible for you, you can create /.well-known files to redirect
# requests. See
2021-01-01 13:47:53 +01:00
# https://matrix.org/docs/spec/client_server/latest#get-well-known-matrix-client
2022-02-12 10:29:04 +01:00
# and
# https://matrix.org/docs/spec/server_server/r0.1.4#get-well-known-matrix-server
2021-01-01 13:47:53 +01:00
# for more information
# YOU NEED TO EDIT THIS
#server_name = "your.server.name"
# This is the only directory where Conduit will save its data
2022-02-12 10:29:04 +01:00
database_path = "/var/lib/matrix-conduit/"
database_backend = "rocksdb"
2021-01-01 13:47:53 +01:00
# The port Conduit will be running on. You need to set up a reverse proxy in
# your web server (e.g. apache or nginx), so all requests to /_matrix on port
# 443 and 8448 will be forwarded to the Conduit instance running on this port
2022-02-12 10:29:04 +01:00
# Docker users: Don't change this, you'll need to map an external port to this.
2021-01-01 13:47:53 +01:00
port = 6167
# Max size for uploads
max_request_size = 20_000_000 # in bytes
2021-08-31 18:25:35 +02:00
# Enables registration. If set to false, no users can register on this server.
allow_registration = true
2021-01-01 13:47:53 +01:00
allow_federation = true
trusted_servers = ["matrix.org"]
#max_concurrent_requests = 100 # How many requests Conduit sends to other servers at the same time
2022-02-12 10:29:04 +01:00
#log = "info,state_res=warn,rocket=off,_=off,sled=off"
2021-01-01 13:47:53 +01:00
address = "127.0.0.1" # This makes sure Conduit can only be reached using the reverse proxy
2022-02-12 10:29:04 +01:00
#address = "0.0.0.0" # If Conduit is running in a container, make sure the reverse proxy (ie. Traefik) can reach it.
```
## Setting the correct file permissions
As we are using a Conduit specific user we need to allow it to read the config. To do that you can run this command on
Debian:
```bash
sudo chown -R root:root /etc/matrix-conduit
sudo chmod 755 /etc/matrix-conduit
```
If you use the default database path you also need to run this:
```bash
2022-02-13 13:15:40 +01:00
sudo mkdir -p /var/lib/matrix-conduit/
sudo chown -R conduit:nogroup /var/lib/matrix-conduit/
sudo chmod 700 /var/lib/matrix-conduit/
```
2021-01-01 13:47:53 +01:00
## Setting up the Reverse Proxy
2021-01-01 13:47:53 +01:00
This depends on whether you use Apache, Nginx or another web server.
### Apache
Create `/etc/apache2/sites-enabled/050-conduit.conf` and copy-and-paste this:
```apache
2021-01-01 13:47:53 +01:00
Listen 8448
<VirtualHost *:443 *:8448>
ServerName your.server.name # EDIT THIS
AllowEncodedSlashes NoDecode
ProxyPass /_matrix/ http://127.0.0.1:6167/_matrix/ nocanon
ProxyPassReverse /_matrix/ http://127.0.0.1:6167/_matrix/
</VirtualHost>
```
2021-01-01 13:47:53 +01:00
**You need to make some edits again.** When you are done, run
```bash
$ sudo systemctl reload apache2
```
2021-01-01 13:47:53 +01:00
### Nginx
If you use Nginx and not Apache, add the following server section inside the http section of `/etc/nginx/nginx.conf`
```nginx
2021-01-01 13:47:53 +01:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 8448 ssl http2;
listen [::]:8448 ssl http2;
2021-01-01 13:47:53 +01:00
server_name your.server.name; # EDIT THIS
merge_slashes off;
2021-01-01 13:47:53 +01:00
location /_matrix/ {
proxy_pass http://127.0.0.1:6167$request_uri;
proxy_set_header Host $http_host;
proxy_buffering off;
2021-01-01 13:47:53 +01:00
}
ssl_certificate /etc/letsencrypt/live/your.server.name/fullchain.pem; # EDIT THIS
ssl_certificate_key /etc/letsencrypt/live/your.server.name/privkey.pem; # EDIT THIS
ssl_trusted_certificate /etc/letsencrypt/live/your.server.name/chain.pem; # EDIT THIS
include /etc/letsencrypt/options-ssl-nginx.conf;
2021-01-01 13:47:53 +01:00
}
```
2021-01-01 13:47:53 +01:00
**You need to make some edits again.** When you are done, run
2021-01-01 13:47:53 +01:00
```bash
$ sudo systemctl reload nginx
```
## SSL Certificate
2021-01-01 13:47:53 +01:00
The easiest way to get an SSL certificate, if you don't have one already, is to install `certbot` and run this:
```bash
2021-01-01 13:47:53 +01:00
$ sudo certbot -d your.server.name
```
## You're done!
2020-10-20 14:18:20 +02:00
Now you can start Conduit with:
```bash
$ sudo systemctl start conduit
```
2020-10-20 14:18:20 +02:00
Set it to start automatically when your system boots with:
```bash
$ sudo systemctl enable conduit
```
2021-05-22 13:39:31 +02:00
2021-09-01 13:09:24 +02:00
## How do I know it works?
You can open <https://app.element.io>, enter your homeserver and try to register.
You can also use these commands as a quick health check.
```bash
$ curl https://your.server.name/_matrix/client/versions
$ curl https://your.server.name:8448/_matrix/client/versions
```
2022-06-13 20:45:12 +02:00
- To check if your server can talk with other homeservers, you can use the [Matrix Federation Tester](https://federationtester.matrix.org/).
If you can register but cannot join federated rooms check your config again and also check if the port 8448 is open and forwarded correctly.
# What's next?
## Audio/Video calls
For Audio/Video call functionality see the [TURN Guide](TURN.md).
## Appservices
If you want to set up an appservice, take a look at the [Appservice Guide](APPSERVICES.md).