- minor cleanup
This commit is contained in:
parent
bf0189230e
commit
bf7898225b
@ -1,95 +1,95 @@
|
|||||||
akka {
|
akka {
|
||||||
actor {
|
actor {
|
||||||
debug {
|
debug {
|
||||||
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill et.c.)
|
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill et.c.)
|
||||||
autoreceive = on
|
autoreceive = on
|
||||||
# enable DEBUG logging of actor lifecycle changes
|
# enable DEBUG logging of actor lifecycle changes
|
||||||
lifecycle = on
|
lifecycle = on
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
||||||
loglevel = "DEBUG"
|
loglevel = "DEBUG"
|
||||||
|
|
||||||
redis-publish-worker-dispatcher {
|
redis-publish-worker-dispatcher {
|
||||||
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
||||||
# Throughput defines the maximum number of messages to be
|
# Throughput defines the maximum number of messages to be
|
||||||
# processed per actor before the thread jumps to the next actor.
|
# processed per actor before the thread jumps to the next actor.
|
||||||
# Set to 1 for as fair as possible.
|
# Set to 1 for as fair as possible.
|
||||||
throughput = 512
|
throughput = 512
|
||||||
}
|
}
|
||||||
|
|
||||||
redis-subscriber-worker-dispatcher {
|
redis-subscriber-worker-dispatcher {
|
||||||
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
||||||
# Throughput defines the maximum number of messages to be
|
# Throughput defines the maximum number of messages to be
|
||||||
# processed per actor before the thread jumps to the next actor.
|
# processed per actor before the thread jumps to the next actor.
|
||||||
# Set to 1 for as fair as possible.
|
# Set to 1 for as fair as possible.
|
||||||
throughput = 512
|
throughput = 512
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
redis {
|
redis {
|
||||||
host="127.0.0.1"
|
host="127.0.0.1"
|
||||||
port=6379
|
port=6379
|
||||||
password="foobared2"
|
password=""
|
||||||
# recording keys should expire in 14 days
|
# recording keys should expire in 14 days
|
||||||
keyExpiry=1209600
|
keyExpiry=1209600
|
||||||
}
|
}
|
||||||
|
|
||||||
expire {
|
expire {
|
||||||
# time in seconds
|
# time in seconds
|
||||||
lastUserLeft = 60
|
lastUserLeft = 60
|
||||||
neverJoined = 300
|
neverJoined = 300
|
||||||
maxRegUserToJoin = 300
|
maxRegUserToJoin = 300
|
||||||
}
|
}
|
||||||
|
|
||||||
services {
|
services {
|
||||||
bbbWebAPI = "http://192.168.23.33/bigbluebutton/api"
|
bbbWebAPI = "http://192.168.23.33/bigbluebutton/api"
|
||||||
sharedSecret = "changeme"
|
sharedSecret = "changeme"
|
||||||
}
|
}
|
||||||
|
|
||||||
red5 {
|
red5 {
|
||||||
deskshareip="10.130.218.89"
|
deskshareip="10.130.218.89"
|
||||||
deskshareapp="video-broadcast"
|
deskshareapp="video-broadcast"
|
||||||
}
|
}
|
||||||
|
|
||||||
eventBus {
|
eventBus {
|
||||||
meetingManagerChannel = "MeetingManagerChannel"
|
meetingManagerChannel = "MeetingManagerChannel"
|
||||||
outMessageChannel = "OutgoingMessageChannel"
|
outMessageChannel = "OutgoingMessageChannel"
|
||||||
incomingJsonMsgChannel = "IncomingJsonMsgChannel"
|
incomingJsonMsgChannel = "IncomingJsonMsgChannel"
|
||||||
outBbbMsgMsgChannel = "OutBbbMsgChannel"
|
outBbbMsgMsgChannel = "OutBbbMsgChannel"
|
||||||
}
|
}
|
||||||
|
|
||||||
sharedNotes {
|
sharedNotes {
|
||||||
maxNumberOfNotes = 3
|
maxNumberOfNotes = 3
|
||||||
maxNumberOfUndos = 30
|
maxNumberOfUndos = 30
|
||||||
}
|
}
|
||||||
|
|
||||||
http {
|
http {
|
||||||
interface = "0.0.0.0"
|
interface = "0.0.0.0"
|
||||||
port = 9999
|
port = 9999
|
||||||
}
|
}
|
||||||
|
|
||||||
services {
|
services {
|
||||||
telizeHost = "www.telize.com"
|
telizeHost = "www.telize.com"
|
||||||
telizePort = 80
|
telizePort = 80
|
||||||
}
|
}
|
||||||
|
|
||||||
apps {
|
apps {
|
||||||
checkPermissions = true
|
checkPermissions = true
|
||||||
endMeetingWhenNoMoreAuthedUsers = false
|
endMeetingWhenNoMoreAuthedUsers = false
|
||||||
endMeetingWhenNoMoreAuthedUsersAfterMinutes = 2
|
endMeetingWhenNoMoreAuthedUsersAfterMinutes = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
voiceConf {
|
voiceConf {
|
||||||
recordPath = "/var/freeswitch/meetings"
|
recordPath = "/var/freeswitch/meetings"
|
||||||
}
|
}
|
||||||
|
|
||||||
recording {
|
recording {
|
||||||
# set zero to disable chapter break
|
# set zero to disable chapter break
|
||||||
chapterBreakLengthInMinutes = 0
|
chapterBreakLengthInMinutes = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
whiteboard {
|
whiteboard {
|
||||||
multiUserDefault = false
|
multiUserDefault = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,39 +1,39 @@
|
|||||||
akka {
|
akka {
|
||||||
actor {
|
actor {
|
||||||
debug {
|
debug {
|
||||||
receive = on
|
receive = on
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
||||||
loglevel = "DEBUG"
|
loglevel = "DEBUG"
|
||||||
stdout-loglevel = "DEBUG"
|
stdout-loglevel = "DEBUG"
|
||||||
|
|
||||||
redis-subscriber-worker-dispatcher {
|
redis-subscriber-worker-dispatcher {
|
||||||
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
||||||
# Throughput defines the maximum number of messages to be
|
# Throughput defines the maximum number of messages to be
|
||||||
# processed per actor before the thread jumps to the next actor.
|
# processed per actor before the thread jumps to the next actor.
|
||||||
# Set to 1 for as fair as possible.
|
# Set to 1 for as fair as possible.
|
||||||
throughput = 512
|
throughput = 512
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
freeswitch {
|
freeswitch {
|
||||||
esl {
|
esl {
|
||||||
host="127.0.0.1"
|
host="127.0.0.1"
|
||||||
port=8021
|
port=8021
|
||||||
password="ClueCon"
|
password="ClueCon"
|
||||||
}
|
}
|
||||||
conf {
|
conf {
|
||||||
profile="cdquality"
|
profile="cdquality"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
redis {
|
redis {
|
||||||
host="127.0.0.1"
|
host="127.0.0.1"
|
||||||
port=6379
|
port=6379
|
||||||
password="foobared2"
|
password=""
|
||||||
# recording keys should expire in 14 days
|
# recording keys should expire in 14 days
|
||||||
keyExpiry=1209600
|
keyExpiry=1209600
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,31 +1,31 @@
|
|||||||
#
|
#
|
||||||
# NOTE: default properties.
|
# NOTE: default properties.
|
||||||
#
|
#
|
||||||
# NOTE!!!! NOTE!!!! NOTE!!!! NOTE!!!! NOTE!!!!
|
# NOTE!!!! NOTE!!!! NOTE!!!! NOTE!!!! NOTE!!!!
|
||||||
# When making changes that you don't want checked-in, do
|
# When making changes that you don't want checked-in, do
|
||||||
# git update-index --assume-unchanged <file>
|
# git update-index --assume-unchanged <file>
|
||||||
#
|
#
|
||||||
# To have git track the changes again
|
# To have git track the changes again
|
||||||
# git update-index --no-assume-unchanged <file>
|
# git update-index --no-assume-unchanged <file>
|
||||||
#
|
#
|
||||||
|
|
||||||
recordingDirectory=/usr/share/red5/webapps/screenshare/streams
|
recordingDirectory=/usr/share/red5/webapps/screenshare/streams
|
||||||
|
|
||||||
redis.host=127.0.0.1
|
redis.host=127.0.0.1
|
||||||
redis.port=6379
|
redis.port=6379
|
||||||
redis.password=foobared2
|
redis.password=
|
||||||
redis.keyExpiry=1209600
|
redis.keyExpiry=1209600
|
||||||
|
|
||||||
streamBaseUrl=rtmp://ritz-20.blindside-dev.com/screenshare
|
streamBaseUrl=rtmp://10.130.218.38/screenshare
|
||||||
jnlpUrl=https://ritz-20.blindside-dev.com/screenshare
|
jnlpUrl=http://10.130.218.38/screenshare
|
||||||
jnlpFile=https://ritz-20.blindside-dev.com/screenshare/screenshare.jnlp
|
jnlpFile=http://10.130.218.38/screenshare/screenshare.jnlp
|
||||||
useH264=false
|
useH264=false
|
||||||
|
|
||||||
# NOTES:
|
# NOTES:
|
||||||
# 1. GOP (group of pictures) is calculated as frameRate * keyFrameInterval
|
# 1. GOP (group of pictures) is calculated as frameRate * keyFrameInterval
|
||||||
# 2. intra-refresh=1 doesn't work in Chrome. Late comers can't view the stream as
|
# 2. intra-refresh=1 doesn't work in Chrome. Late comers can't view the stream as
|
||||||
# the user missed the key frame
|
# the user missed the key frame
|
||||||
# 3. keyFrameInterval is in seconds
|
# 3. keyFrameInterval is in seconds
|
||||||
# 4. Make sure you encode & into & as it will break the JNLP XML
|
# 4. Make sure you encode & into & as it will break the JNLP XML
|
||||||
#codecOptions=crf=36&preset=veryfast&tune=animation,zerolatency&frameRate=12.0&keyFrameInterval=6
|
#codecOptions=crf=36&preset=veryfast&tune=animation,zerolatency&frameRate=12.0&keyFrameInterval=6
|
||||||
codecOptions=crf=38&preset=veryfast&tune=zerolatency&frameRate=5.0&keyFrameInterval=5
|
codecOptions=crf=38&preset=veryfast&tune=zerolatency&frameRate=5.0&keyFrameInterval=5
|
||||||
|
@ -21,7 +21,7 @@ default.BigBlueButtonDirectory=/var/bigbluebutton
|
|||||||
|
|
||||||
redisHost=127.0.0.1
|
redisHost=127.0.0.1
|
||||||
redisPort=6379
|
redisPort=6379
|
||||||
redisPassword=foobared2
|
redisPassword=
|
||||||
redisExpireKey=1209600
|
redisExpireKey=1209600
|
||||||
|
|
||||||
# Maximum message length allowed from the client.
|
# Maximum message length allowed from the client.
|
||||||
|
@ -1,43 +1,43 @@
|
|||||||
akka {
|
akka {
|
||||||
actor {
|
actor {
|
||||||
debug {
|
debug {
|
||||||
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill et.c.)
|
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill et.c.)
|
||||||
autoreceive = on
|
autoreceive = on
|
||||||
# enable DEBUG logging of actor lifecycle changes
|
# enable DEBUG logging of actor lifecycle changes
|
||||||
lifecycle = on
|
lifecycle = on
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
loggers = ["akka.event.slf4j.Slf4jLogger"]
|
||||||
loglevel = "DEBUG"
|
loglevel = "DEBUG"
|
||||||
|
|
||||||
redis-publish-worker-dispatcher {
|
redis-publish-worker-dispatcher {
|
||||||
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
||||||
# Throughput defines the maximum number of messages to be
|
# Throughput defines the maximum number of messages to be
|
||||||
# processed per actor before the thread jumps to the next actor.
|
# processed per actor before the thread jumps to the next actor.
|
||||||
# Set to 1 for as fair as possible.
|
# Set to 1 for as fair as possible.
|
||||||
throughput = 512
|
throughput = 512
|
||||||
}
|
}
|
||||||
|
|
||||||
redis-subscriber-worker-dispatcher {
|
redis-subscriber-worker-dispatcher {
|
||||||
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
mailbox-type = "akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
|
||||||
# Throughput defines the maximum number of messages to be
|
# Throughput defines the maximum number of messages to be
|
||||||
# processed per actor before the thread jumps to the next actor.
|
# processed per actor before the thread jumps to the next actor.
|
||||||
# Set to 1 for as fair as possible.
|
# Set to 1 for as fair as possible.
|
||||||
throughput = 512
|
throughput = 512
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
redis {
|
redis {
|
||||||
host="127.0.0.1"
|
host="127.0.0.1"
|
||||||
port=6379
|
port=6379
|
||||||
password="foobared2"
|
password=""
|
||||||
# recording keys should expire in 14 days
|
# recording keys should expire in 14 days
|
||||||
keyExpiry=1209600
|
keyExpiry=1209600
|
||||||
}
|
}
|
||||||
|
|
||||||
eventBus {
|
eventBus {
|
||||||
meetingManagerChannel = "MeetingManagerChannel"
|
meetingManagerChannel = "MeetingManagerChannel"
|
||||||
outMessageChannel = "OutgoingMessageChannel"
|
outMessageChannel = "OutgoingMessageChannel"
|
||||||
incomingJsonMsgChannel = "IncomingJsonMsgChannel"
|
incomingJsonMsgChannel = "IncomingJsonMsgChannel"
|
||||||
outBbbMsgMsgChannel = "OutBbbMsgChannel"
|
outBbbMsgMsgChannel = "OutBbbMsgChannel"
|
||||||
}
|
}
|
||||||
|
@ -244,7 +244,7 @@ recordStatusDir=/var/bigbluebutton/recording/status/recorded
|
|||||||
|
|
||||||
redisHost=127.0.0.1
|
redisHost=127.0.0.1
|
||||||
redisPort=6379
|
redisPort=6379
|
||||||
redisPassword=foobared2
|
redisPassword=
|
||||||
redisKeyExpiry=1209600
|
redisKeyExpiry=1209600
|
||||||
|
|
||||||
# The directory where the published/unpublised recordings are located. This is for
|
# The directory where the published/unpublised recordings are located. This is for
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Set encoding to utf-8
|
# Set encoding to utf-8
|
||||||
# encoding: UTF-8
|
# encoding: UTF-8
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user