opensips/opensipsctlrc

Wed, 21 Sep 2011 14:04:16 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 21 Sep 2011 14:04:16 +0200
changeset 377
67e813202d53
child 397
c98ae03f4266
permissions
-rw-r--r--

Introduce severe but necessary corrections and update to new vendor version.

     1 ##
     2 ##  opensipsctlrc -- OpenSIPS control tools configuration
     3 ##
     5 ## your SIP domain
     6 SIP_DOMAIN=name.host.tld
     8 ## chrooted directory
     9 # $CHROOT_DIR="/path/to/chrooted/directory"
    11 ## Database type: MYSQL, PGSQL, ORACLE, DB_BERKELEY, or DBTEXT;
    12 ## by default none is loaded. Use opensipsdbctl to setup a database.
    13 DBENGINE=DBTEXT
    15 ## database host
    16 # DBHOST=localhost
    18 ## database name (for ORACLE this is TNS name)
    19 # DBNAME=opensips
    21 # database path used by dbtext or db_berkeley
    22 DB_PATH=@l_prefix@/var/opensips/db
    24 ## database read/write user
    25 # DBRWUSER=@l_rusr@
    27 ## password for database read/write user
    28 # DBRWPW=rente_word_pass_rw
    30 ## database read only user
    31 # DBROUSER=@l_rusr@
    33 ## password for database read only user
    34 # DBROPW=rentero_word_pass
    36 ## database super user (for ORACLE this is 'scheme-creator' user)
    37 # DBROOTUSER=@l_susr@
    39 # user name column
    40 # USERCOL="username"
    43 # SQL definitions
    44 # If you change this definitions here, then you must change them 
    45 # in db/schema/entities.xml too.
    46 #
    48 # FOREVER="2020-05-28 21:32:15"
    49 # DEFAULT_ALIASES_EXPIRES=$FOREVER
    50 # DEFAULT_Q="1.0"
    51 # DEFAULT_CALLID="Default-Call-ID"
    52 # DEFAULT_CSEQ="13"
    53 # DEFAULT_LOCATION_EXPIRES=$FOREVER
    56 # Program to calculate a message-digest fingerprint 
    57 # MD5="md5sum"
    59 # awk tool
    60 # AWK="awk"
    62 # grep tool
    63 # GREP="grep"
    65 # sed tool
    66 # SED="sed"
    69 # Describe what additional tables to install. Valid values for the variables
    70 # below are yes/no/ask. With ask (default) it will interactively ask the user
    71 # for an answer, while yes/no allow for automated, unassisted installs.
    72 #
    74 # If to install tables for the modules in the EXTRA_MODULES variable.
    75 # INSTALL_EXTRA_TABLES=ask
    77 # If to install presence related tables.
    78 # INSTALL_PRESENCE_TABLES=ask
    80 # Define what module tables should be installed.
    81 # If you use the postgres database and want to change the installed tables,
    82 # then you must also adjust the STANDARD_TABLES or EXTRA_TABLES variable 
    83 # accordingly in the opensipsdbctl.base script.
    85 # opensips standard modules
    86 # STANDARD_MODULES="standard acc lcr domain group permissions registrar usrloc 
    87 #                   msilo alias_db uri_db speeddial avpops auth_db pdt dialog 
    88 #                   dispatcher dialplan drouting nathelper load_balancer"
    90 # opensips extra modules
    91 # EXTRA_MODULES="imc cpl siptrace domainpolicy carrierroute userblacklist"
    94 ## type of aliases used: DB - database aliases; UL - usrloc aliases
    95 ## - default: none
    96 # ALIASES_TYPE="DB"
    98 ## control engine: FIFO or UNIXSOCK
    99 ## - default FIFO
   100 CTLENGINE=FIFO
   102 ## path to FIFO file
   103 OSIPS_FIFO=@l_prefix@/var/opensips/opensips.fifo
   105 ## path to server inbound FIFO directory
   106 OSER_FIRET=@l_prefix@/var/opensips
   108 ## MI_CONNECTOR control engine: FIFO, UNIXSOCK, UDP, XMLRPC
   109 # MI_CONNECTOR=FIFO:@l_prefix@/var/opensips/opensips.fifo
   110 # MI_CONNECTOR=UNIXSOCK:/tmp/opensips.sock
   111 # MI_CONNECTOR=UDP:192.168.2.133:8000
   112 # MI_CONNECTOR=XMLRPC:192.168.2.133:8000
   114 ## check ACL names; default on (1); off (0)
   115 # VERIFY_ACL=1
   117 ## ACL names - if VERIFY_ACL is set, only the ACL names from below list
   118 ## are accepted
   119 # ACL_GROUPS="local ld int voicemail free-pstn"
   121 ## verbose - debug purposes - default '0'
   122 # VERBOSE=1
   124 ## do (1) or don't (0) store plaintext passwords
   125 ## in the subscriber table - default '1'
   126 STORE_PLAINTEXT_PW=0
   128 ## OPENSIPS START Options
   129 ## PID file path - default is: /var/run/opensips.pid
   130 PID_FILE=@l_prefix@/var/opensips/opensips.pid
   132 ## Extra start options - default is: not set
   133 # example: start opensips with 64MB share memory: STARTOPTIONS="-m 64"
   134 # STARTOPTIONS=

mercurial