mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 15:01:23 +01:00
Remove double spaces
Reading the RST spec, I was trying to get breaks to appear by entering the double spaces after the lines in the code blocks. It does not work anyway, and, as pointed out, I've removed.
This commit is contained in:
parent
70d820c875
commit
551fe80bed
1 changed files with 11 additions and 12 deletions
|
@ -19,11 +19,11 @@ coturn Setup
|
||||||
You may be able to setup coturn via your package manager, or set it up manually using the usual ``configure, make, make install`` process.
|
You may be able to setup coturn via your package manager, or set it up manually using the usual ``configure, make, make install`` process.
|
||||||
|
|
||||||
1. Check out coturn::
|
1. Check out coturn::
|
||||||
svn checkout https://github.com/coturn/coturn.git coturn
|
svn checkout https://github.com/coturn/coturn.git coturn
|
||||||
cd coturn
|
cd coturn
|
||||||
|
|
||||||
2. Configure it::
|
2. Configure it::
|
||||||
./configure
|
./configure
|
||||||
|
|
||||||
You may need to install libevent2: if so, you should do so
|
You may need to install libevent2: if so, you should do so
|
||||||
in the way recommended by your operating system.
|
in the way recommended by your operating system.
|
||||||
|
@ -31,21 +31,21 @@ You may be able to setup coturn via your package manager, or set it up manually
|
||||||
database is unnecessary for this purpose.
|
database is unnecessary for this purpose.
|
||||||
|
|
||||||
3. Build and install it::
|
3. Build and install it::
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
|
||||||
4. Create or edit the config file in ``/etc/turnserver.conf``. The relevant
|
4. Create or edit the config file in ``/etc/turnserver.conf``. The relevant
|
||||||
lines, with example values, are::
|
lines, with example values, are::
|
||||||
|
|
||||||
lt-cred-mech
|
lt-cred-mech
|
||||||
use-auth-secret
|
use-auth-secret
|
||||||
static-auth-secret=[your secret key here]
|
static-auth-secret=[your secret key here]
|
||||||
realm=turn.myserver.org
|
realm=turn.myserver.org
|
||||||
|
|
||||||
See turnserver.conf for explanations of the options.
|
See turnserver.conf for explanations of the options.
|
||||||
One way to generate the static-auth-secret is with pwgen::
|
One way to generate the static-auth-secret is with pwgen::
|
||||||
|
|
||||||
pwgen -s 64 1
|
pwgen -s 64 1
|
||||||
|
|
||||||
5. Ensure youe firewall allows traffic into the TURN server on
|
5. Ensure youe firewall allows traffic into the TURN server on
|
||||||
the ports you've configured it to listen on (remember to allow
|
the ports you've configured it to listen on (remember to allow
|
||||||
|
@ -55,7 +55,7 @@ You may be able to setup coturn via your package manager, or set it up manually
|
||||||
import your private key and certificate.
|
import your private key and certificate.
|
||||||
|
|
||||||
7. Start the turn server::
|
7. Start the turn server::
|
||||||
bin/turnserver -o
|
bin/turnserver -o
|
||||||
|
|
||||||
|
|
||||||
synapse Setup
|
synapse Setup
|
||||||
|
@ -92,4 +92,3 @@ Now, restart synapse::
|
||||||
./synctl restart
|
./synctl restart
|
||||||
|
|
||||||
...and your Home Server now supports VoIP relaying!
|
...and your Home Server now supports VoIP relaying!
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue