我进展顺利,将 ruby 引擎 Adhearsion 与电话引擎 FreeSwitch 连接起来。但是,说明告诉我给一些配置文件一次。
具体来说
config.punchblock.platform
以及在目录上设置的权限
/var/punchblock/record
谁能告诉我这些在哪里?
完整的说明在这里:
我进展顺利,将 ruby 引擎 Adhearsion 与电话引擎 FreeSwitch 连接起来。但是,说明告诉我给一些配置文件一次。
具体来说
config.punchblock.platform
以及在目录上设置的权限
/var/punchblock/record
谁能告诉我这些在哪里?
完整的说明在这里:
config.punchblock.platform
位于 Adhearsion 应用程序的 config/adhearsion.rb 中。
和
/var/punchblock/record
是星号运行的地方。
是的,这就是我为数据库连接所做的。
Adhearsion.config do |config|
config.adhearsion_activerecord do |db|
db.username = "user"
db.password = "password"
db.database = "database"
db.adapter = "mysql"
db.host = "localhost"
db.port = 3306
end
end
#Centralized way to specify any Adhearsion platform or plugin configuration
#To update a plugin configuration you can write either:
# Option 1
Adhearsion.config.<plugin-name> do |config|
config.<key> = <value>
end
# Option 2
Adhearsion.config do |config|
config.<plugin-name>.<key> = <value>
end