summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorRick Cogley <rick@cogley.info>2016-06-26 19:07:07 +0900
committerGitHub <noreply@github.com>2016-06-26 19:07:07 +0900
commit70d820c87595f037f0c17dc525604aaaa0cf148c (patch)
treeb6914695eec17dba07e5639a05d5a147a0c1b9f3 /docs
parentMerge pull request #889 from matrix-org/markjh/synctl_workers (diff)
downloadsynapse-70d820c87595f037f0c17dc525604aaaa0cf148c.tar.xz
Update to reflect new location at github.
Additionally it does not appear there is turnserver.conf.default, but rather, just /etc/turnserver.conf.
Diffstat (limited to 'docs')
-rw-r--r--docs/turn-howto.rst34
1 files changed, 18 insertions, 16 deletions
diff --git a/docs/turn-howto.rst b/docs/turn-howto.rst
index e2c73458e2..4f2794111f 100644
--- a/docs/turn-howto.rst
+++ b/docs/turn-howto.rst
@@ -9,19 +9,21 @@ the Home Server to generate credentials that are valid for use on the TURN
 server through the use of a secret shared between the Home Server and the
 TURN server.
 
-This document described how to install coturn
-(https://code.google.com/p/coturn/) which also supports the TURN REST API,
+This document describes how to install coturn
+(https://github.com/coturn/coturn) which also supports the TURN REST API,
 and integrate it with synapse.
 
 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.  
+
  1. Check out coturn::
-      svn checkout http://coturn.googlecode.com/svn/trunk/ coturn
-      cd coturn
+      svn checkout https://github.com/coturn/coturn.git coturn  
+      cd coturn  
 
  2. Configure it::
-      ./configure
+      ./configure  
 
     You may need to install libevent2: if so, you should do so
     in the way recommended by your operating system.
@@ -29,22 +31,21 @@ coturn Setup
     database is unnecessary for this purpose.
 
  3. Build and install it::
-      make
-      make install
+      make  
+      make install  
 
- 4. Make a config file in /etc/turnserver.conf. You can customise
-    a config file from turnserver.conf.default. The relevant
+ 4. Create or edit the config file in ``/etc/turnserver.conf``. The relevant
     lines, with example values, are::
 
-      lt-cred-mech
-      use-auth-secret
-      static-auth-secret=[your secret key here]
-      realm=turn.myserver.org
+      lt-cred-mech  
+      use-auth-secret  
+      static-auth-secret=[your secret key here]  
+      realm=turn.myserver.org  
 
-    See turnserver.conf.default for explanations of the options.
+    See turnserver.conf for explanations of the options.
     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
     the ports you've configured it to listen on (remember to allow
@@ -54,7 +55,7 @@ coturn Setup
     import your private key and certificate.
 
  7. Start the turn server::
-       bin/turnserver -o
+       bin/turnserver -o  
 
 
 synapse Setup
@@ -91,3 +92,4 @@ Now, restart synapse::
     ./synctl restart
 
 ...and your Home Server now supports VoIP relaying!
+