Browse Source

listen on all IPs by default so it easier to get a proof-of-concept running

drop_requests
karl anderson 8 years ago
committed by lazedo
parent
commit
0646be4bfb
1 changed files with 12 additions and 5 deletions
  1. +12
    -5
      kamailio/local.cfg

+ 12
- 5
kamailio/local.cfg View File

@ -23,10 +23,6 @@
# # #!trydef REGISTRAR_SYNC_ROLE # # #!trydef REGISTRAR_SYNC_ROLE
# # #!trydef PRESENCE_NOTIFY_SYNC_ROLE # # #!trydef PRESENCE_NOTIFY_SYNC_ROLE
## PostgreSQL usage - remove all but the last '#' to enable
# # #!substdef "!KAMAILIO_DBMS!postgres!g"
# # #!substdef "!KAZOO_DB_URL!postgres://kamailio:kamailio@127.0.0.1/kamailio!g"
################################################################################ ################################################################################
## SERVER INFORMATION ## SERVER INFORMATION
################################################################################ ################################################################################
@ -37,7 +33,7 @@
## Usually your public IP. If you need ## Usually your public IP. If you need
## to listen on addtional ports or IPs ## to listen on addtional ports or IPs
## add them in "BINDINGS" at the bottom. ## add them in "BINDINGS" at the bottom.
#!substdef "!MY_IP_ADDRESS!127.0.0.1!g"
#!substdef "!MY_IP_ADDRESS!0.0.0.0!g"
## CHANGE "kazoo://guest:guest@127.0.0.1:5672" TO THE AMQP URL ## CHANGE "kazoo://guest:guest@127.0.0.1:5672" TO THE AMQP URL
## This should be the primary RabbitMQ server ## This should be the primary RabbitMQ server
@ -51,6 +47,17 @@
## it completely the validation will be disabled. ## it completely the validation will be disabled.
#!substdef "!MY_WEBSOCKET_DOMAIN!2600hz.com!g" #!substdef "!MY_WEBSOCKET_DOMAIN!2600hz.com!g"
################################################################################
## DATABASE
################################################################################
## This parameter is OPTIONAL
## If you would like to use an external database
## remove all but the last '#' and configure the connector
## accordingly. The example shows how to use postgres.
## See the kamailio documentation for more details.
# # #!substdef "!KAMAILIO_DBMS!postgres!g"
# # #!substdef "!KAZOO_DB_URL!postgres://kamailio:kamailio@127.0.0.1/kamailio!g"
################################################################################ ################################################################################
## UDP PARAMETERS ## UDP PARAMETERS
################################################################################ ################################################################################


Loading…
Cancel
Save