Quellcode durchsuchen

Merge pull request #2784 from QEDeD/master

Explain the option of manually defining your public IP in the documentation for Coturn
pull/2785/head
Slavi Pantaleev vor 2 Jahren
committed by GitHub
Ursprung
Commit
3e631fc298
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: 4AEE18F83AFDEB23
1 geänderte Dateien mit 10 neuen und 0 gelöschten Zeilen
  1. +10
    -0
      docs/configuring-playbook-turn.md

+ 10
- 0
docs/configuring-playbook-turn.md Datei anzeigen

@@ -15,6 +15,13 @@ matrix_coturn_enabled: false

In that case, Synapse would not point to any Coturn servers and audio/video call functionality may fail.

## Manually defining your public IP
In the `hosts` file we explicitly ask for your server's external IP address when defining `ansible_host`, because the same value is used for configuring Coturn.
If you'd rather use a local IP for `ansible_host`, make sure to set up `matrix_coturn_turn_external_ip_address` replacing `YOUR_PUBLIC_IP` with the pubic IP used by the server.

```yaml
matrix_coturn_turn_external_ip_address: "YOUR_PUBLIC_IP"
```

## Using your own external Coturn server

@@ -40,3 +47,6 @@ jitsi_web_stun_servers:
- stun:HOSTNAME_OR_IP:PORT
```
You can put multiple host/port combinations if you like.

## Further variables and configuration options
To see all the available configuration options, check roles/custom/matrix-coturn/defaults/main.yml

Laden…
Abbrechen
Speichern