- add password to config
- add some comments on when we wrap password with Option
This commit is contained in:
parent
e73b23b6be
commit
aabd440a59
@ -22,6 +22,8 @@ class ClientGWApplication(
|
||||
|
||||
println("************************* REDIS PASSWORD " + redisPassword)
|
||||
|
||||
// Need to wrap redisPassword into Option as it may be
|
||||
// null (ralam nov 29, 2018)
|
||||
val redisPass = Option(redisPassword)
|
||||
|
||||
log.debug("*********** meetingManagerChannel = " + meetingManagerChannel)
|
||||
|
@ -1,5 +1,5 @@
|
||||
# The ip and port the BBB SIP app is going to use
|
||||
bbb.sip.app.ip=192.168.23.53
|
||||
bbb.sip.app.ip=10.130.218.58
|
||||
bbb.sip.app.port=5070
|
||||
|
||||
# The username and password the BBB SIP app to use to
|
||||
@ -9,7 +9,7 @@ sip.server.password=secret
|
||||
|
||||
|
||||
# The ip and port of the FreeSWITCH server
|
||||
freeswitch.ip=192.168.23.53
|
||||
freeswitch.ip=10.130.218.58
|
||||
freeswitch.port=5060
|
||||
|
||||
# The start/stop RTP port the application is going to use
|
||||
|
Loading…
Reference in New Issue
Block a user