opensips/opensipsctlrc

changeset 409
7cc1c5d3b5e7
parent 397
c98ae03f4266
equal deleted inserted replaced
2:e5bf2cf9f28a -1:000000000000
1 ##
2 ## opensipsctlrc -- OpenSIPS control tools configuration
3 ##
4
5 ## your SIP domain
6 SIP_DOMAIN=name.host.tld
7
8 ## chrooted directory
9 # $CHROOT_DIR="/path/to/chrooted/directory"
10
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
14
15 ## database host
16 # DBHOST=localhost
17
18 ## database name (for ORACLE this is TNS name)
19 # DBNAME=opensips
20
21 # database path used by dbtext or db_berkeley
22 DB_PATH=@l_prefix@/var/opensips/db
23
24 ## database read/write user
25 # DBRWUSER=@l_rusr@
26
27 ## password for database read/write user
28 # DBRWPW=rente_word_pass_rw
29
30 ## database read only user
31 # DBROUSER=@l_rusr@
32
33 ## password for database read only user
34 # DBROPW=rentero_word_pass
35
36 ## database super user (for ORACLE this is 'scheme-creator' user)
37 # DBROOTUSER=@l_susr@
38
39 # user name column
40 # USERCOL="username"
41
42
43 # SQL definitions
44 # If you change this definitions here, then you must change them
45 # in db/schema/entities.xml too.
46 #
47
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
54
55
56 # Program to calculate a message-digest fingerprint
57 # MD5="md5sum"
58
59 # awk tool
60 # AWK="awk"
61
62 # grep tool
63 # GREP="grep"
64
65 # sed tool
66 # SED="sed"
67
68
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 #
73
74 # If to install tables for the modules in the EXTRA_MODULES variable.
75 # INSTALL_EXTRA_TABLES=ask
76
77 # If to install presence related tables.
78 # INSTALL_PRESENCE_TABLES=ask
79
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.
84
85 # opensips standard modules
86 # STANDARD_MODULES="standard acc domain group permissions registrar usrloc
87 # msilo alias_db uri_db speeddial avpops auth_db pdt dialog
88 # dispatcher dialplan drouting nathelper load_balancer"
89
90 # opensips extra modules
91 # EXTRA_MODULES="imc cpl siptrace domainpolicy carrierroute userblacklist"
92
93
94 ## type of aliases used: DB - database aliases; UL - usrloc aliases
95 ## - default: none
96 # ALIASES_TYPE="DB"
97
98 ## control engine: FIFO or UNIXSOCK
99 ## - default FIFO
100 CTLENGINE=FIFO
101
102 ## path to FIFO file
103 OSIPS_FIFO=@l_prefix@/var/opensips/opensips.fifo
104
105 ## path to server inbound FIFO directory
106 OSER_FIRET=@l_prefix@/var/opensips
107
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
113
114 ## check ACL names; default on (1); off (0)
115 # VERIFY_ACL=1
116
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"
120
121 ## verbose - debug purposes - default '0'
122 # VERBOSE=1
123
124 ## do (1) or don't (0) store plaintext passwords
125 ## in the subscriber table - default '1'
126 STORE_PLAINTEXT_PW=0
127
128 ## OPENSIPS START Options
129 ## PID file path - default is: /var/run/opensips.pid
130 PID_FILE=@l_prefix@/var/opensips/opensips.pid
131
132 ## Extra start options - default is: not set
133 # example: start opensips with 64MB share memory: STARTOPTIONS="-m 64"
134 # ...as opposed to the 32MB share memory default value in 1.7
135 # STARTOPTIONS=

mercurial