| 1 ## |
|
| 2 ## osipsconsolerc -- OpenSIPS management configuration |
|
| 3 ## |
|
| 4 |
|
| 5 ## your SIP domain |
|
| 6 SIP_DOMAIN=name.host.tld |
|
| 7 |
|
| 8 ## Database type: MYSQL, PGSQL, ORACLE, DB_BERKELEY, or DBTEXT; |
|
| 9 ## by default none is loaded. Use opensipsdbctl to setup a database. |
|
| 10 DBENGINE=DBTEXT |
|
| 11 |
|
| 12 ## database host |
|
| 13 # DBHOST=localhost |
|
| 14 |
|
| 15 ## database port for PostgreSQL |
|
| 16 # DBPORT=5433 |
|
| 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 # Program to calculate a message-digest fingerprint |
|
| 40 # MD5="md5sum" |
|
| 41 |
|
| 42 # awk tool |
|
| 43 # AWK="awk" |
|
| 44 |
|
| 45 # grep tool |
|
| 46 # GREP="egrep" |
|
| 47 |
|
| 48 # sed tool |
|
| 49 # SED="sed" |
|
| 50 |
|
| 51 |
|
| 52 # Describe what additional tables to install. Valid values for the variables |
|
| 53 # below are yes/no/ask. With ask (default) it will interactively ask the user |
|
| 54 # for an answer, while yes/no allow for automated, unassisted installs. |
|
| 55 # |
|
| 56 |
|
| 57 # Define what module tables should be installed. |
|
| 58 # If you use the postgres database and want to change the installed tables, |
|
| 59 # then you must also adjust the STANDARD_TABLES or EXTRA_TABLES variable |
|
| 60 # accordingly in the opensipsdbctl.base script. |
|
| 61 |
|
| 62 # opensips standard modules |
|
| 63 # STANDARD_MODULES="standard acc domain group permissions registrar |
|
| 64 # usrloc msilo alias_db uri_db speeddial avpops auth_db |
|
| 65 # pdt dialog dispatcher dialplan drouting nathelper |
|
| 66 # load_balancer" |
|
| 67 |
|
| 68 # opensips extra modules |
|
| 69 # EXTRA_MODULES="imc cpl siptrace domainpolicy carrierroute userblacklist" |
|
| 70 |
|
| 71 |
|
| 72 ## type of aliases used: DB - database aliases; UL - usrloc aliases |
|
| 73 ## - default: none |
|
| 74 # ALIASES_TYPE="DB" |
|
| 75 |
|
| 76 ## MI_CONNECTOR control engine: FIFO, UNIXSOCK, UDP, XMLRPC |
|
| 77 # MI_CONNECTOR=FIFO:@l_prefix@/var/opensips/opensips.fifo |
|
| 78 # MI_CONNECTOR=UNIXSOCK:/tmp/opensips.sock |
|
| 79 # MI_CONNECTOR=UDP:192.168.2.133:8000 |
|
| 80 # MI_CONNECTOR=XMLRPC:192.168.2.133:8000 |
|
| 81 |
|
| 82 ## check ACL names; default on (1); off (0) |
|
| 83 # VERIFY_ACL=1 |
|
| 84 |
|
| 85 ## ACL names - if VERIFY_ACL is set, only ACL names from list are accepted |
|
| 86 # ACL_GROUPS="local ld int voicemail free-pstn" |
|
| 87 |
|
| 88 ## do (1) or don't (0) store plaintext passwords |
|
| 89 ## in the subscriber table - default '1' |
|
| 90 STORE_PLAINTEXT_PW=0 |
|
| 91 |
|
| 92 ## OPENSIPS START Options |
|
| 93 ## PID file path - default is: /var/run/opensips.pid |
|
| 94 PID_FILE=@l_prefix@/var/opensips/opensips.pid |
|
| 95 |
|
| 96 ## Extra start options - default is: not set |
|
| 97 # example: start opensips with 64MB share memory: STARTOPTIONS="-m 64" |
|
| 98 # ...as opposed to the 32MB share memory default value in 1.7 |
|
| 99 # STARTOPTIONS= |
|