Advertisement
Guest User

Untitled

a guest
Sep 29th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. # $Id$
  2. #
  3. # The Kamailio configuration file for the control tools.
  4. #
  5. # Here you can set variables used in the kamctl and kamdbctl setup
  6. # scripts. Per default all variables here are commented out, the control tools
  7. # will use their internal default values.
  8.  
  9. ## your SIP domain
  10. SIP_DOMAIN=<MY-LIVE-IP-ADDRESS>
  11. ## chrooted directory
  12. # $CHROOT_DIR="/path/to/chrooted/directory"
  13.  
  14. ## database type: MYSQL, PGSQL, ORACLE, DB_BERKELEY, DBTEXT, or SQLITE
  15. # by default none is loaded
  16. #
  17. # If you want to setup a database with kamdbctl, you must at least specify
  18. # this parameter.
  19. DBENGINE=MYSQL
  20.  
  21. ## database host
  22. DBHOST=localhost
  23.  
  24. ## database name (for ORACLE this is TNS name)
  25. DBNAME=kamailio
  26.  
  27. # database path used by dbtext, db_berkeley or sqlite
  28. # DB_PATH="/usr/local/etc/kamailio/dbtext"
  29.  
  30. ## database read/write user
  31. DBRWUSER="kamailio"
  32.  
  33. ## password for database read/write user
  34. DBRWPW="kamailiorw"
  35.  
  36. ## database read only user
  37. # DBROUSER="kamailioro"
  38.  
  39. ## password for database read only user
  40. # DBROPW="kamailioro"
  41.  
  42. ## database access host (from where is kamctl used)
  43. # DBACCESSHOST=192.168.0.1
  44.  
  45. ## database super user (for ORACLE this is 'scheme-creator' user)
  46. DBROOTUSER="root"
  47.  
  48. # user name column
  49. # USERCOL="username"
  50.  
  51.  
  52. # SQL definitions
  53. # If you change this definitions here, then you must change them
  54. # in db/schema/entities.xml too.
  55. # FIXME
  56.  
  57. # FOREVER="2030-05-28 21:32:15"
  58. # DEFAULT_Q="1.0"
  59.  
  60.  
  61. # Program to calculate a message-digest fingerprint
  62. # MD5="md5sum"
  63.  
  64. # awk tool
  65. # AWK="awk"
  66.  
  67. # If you use a system with a grep and egrep that is not 100% gnu grep compatible,
  68. # e.g. solaris, install the gnu grep (ggrep) and specify this below.
  69. #
  70. # grep tool
  71. # GREP="grep"
  72.  
  73. # egrep tool
  74. # EGREP="egrep"
  75.  
  76. # sed tool
  77. # SED="sed"
  78.  
  79. # tail tool
  80. # LAST_LINE="tail -n 1"
  81.  
  82. # expr tool
  83. # EXPR="expr"
  84.  
  85.  
  86. # Describe what additional tables to install. Valid values for the variables
  87. # below are yes/no/ask. With ask (default) it will interactively ask the user
  88. # for an answer, while yes/no allow for automated, unassisted installs.
  89. #
  90.  
  91. # If to install tables for the modules in the EXTRA_MODULES variable.
  92. INSTALL_EXTRA_TABLES=ask
  93.  
  94. # If to install presence related tables.
  95. INSTALL_PRESENCE_TABLES=ask
  96.  
  97. # Define what module tables should be installed.
  98. # If you use the postgres database and want to change the installed tables, then you
  99. # must also adjust the STANDARD_TABLES or EXTRA_TABLES variable accordingly in the
  100. # kamdbctl.base script.
  101.  
  102. # Kamailio standard modules
  103. # STANDARD_MODULES="standard acc lcr domain group permissions registrar usrloc msilo
  104. # alias_db uri_db speeddial avpops auth_db pdt dialog dispatcher
  105. # dialplan"
  106.  
  107. # Kamailio extra modules
  108. # EXTRA_MODULES="imc cpl siptrace domainpolicy carrierroute userblacklist htable purple sca"
  109.  
  110.  
  111. ## type of aliases used: DB - database aliases; UL - usrloc aliases
  112. ## - default: none
  113. # ALIASES_TYPE="DB"
  114.  
  115. ## control engine: FIFO or UNIXSOCK
  116. ## - default FIFO
  117. # CTLENGINE="FIFO"
  118.  
  119. ## path to FIFO file
  120. # FIFOPATH="/tmp/kamailio_fifo"
  121.  
  122. ## check ACL names; default on (1); off (0)
  123. # VERIFY_ACL=1
  124.  
  125. ## ACL names - if VERIFY_ACL is set, only the ACL names from below list
  126. ## are accepted
  127. # ACL_GROUPS="local ld int voicemail free-pstn"
  128.  
  129. ## verbose - debug purposes - default '0'
  130. # VERBOSE=1
  131.  
  132. ## do (1) or don't (0) store plaintext passwords
  133. ## in the subscriber table - default '1'
  134. STORE_PLAINTEXT_PW=0
  135.  
  136. ## Kamailio START Options
  137. ## PID file path - default is: /var/run/kamailio.pid
  138. # PID_FILE=/var/run/kamailio.pid
  139.  
  140. ## Extra start options - default is: not set
  141. # example: start Kamailio with 64MB share memory: STARTOPTIONS="-m 64"
  142. # STARTOPTIONS=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement