Browse Source

Fixed borked order in config file.

pull/206/head
Simon Eisenmann 10 years ago
parent
commit
b719e7dac2
  1. 6
      server.conf.in

6
server.conf.in

@ -43,10 +43,7 @@ listen = 127.0.0.1:8080 @@ -43,10 +43,7 @@ listen = 127.0.0.1:8080
; STUN server URIs in format host:port. You can provide multiple seperated by
; space. If you do not have one use a public one like stun.spreed.me:443. If
; you have a TURN server you do not need to set an STUN server as the TURN
; Renegotiation support flag. Set to true to tell clients that they can
; renegoiate peer connections when required. Defaults to false.
; server will provide STUN services.
;renegotiation = false
;stunURIs = stun:stun.spreed.me:443
; TURN server URIs in format host:port?transport=udp|tcp. You can provide
; multiple seperated by space. If you do not have at least one TURN server then
@ -60,6 +57,9 @@ listen = 127.0.0.1:8080 @@ -60,6 +57,9 @@ listen = 127.0.0.1:8080
; See http://tools.ietf.org/html/draft-uberti-behave-turn-rest-00 for details.
; A supported TURN server is https://code.google.com/p/rfc5766-turn-server/.
;turnSecret = the-default-turn-shared-secret-do-not-keep
; Renegotiation support flag. Set to true to tell clients that they can
; renegoiate peer connections when required. Defaults to false.
;renegotiation = false
; Session secret to use for session id generator. 32 or 64 bytes of random data
; are recommented (hex encoded). A warning will be logged if hex decode fails.
; You can generate a secret easily with "xxd -ps -l 32 -c 32 /dev/random".

Loading…
Cancel
Save