-
Notifications
You must be signed in to change notification settings - Fork 1
/
routing_engine.example.yaml
48 lines (36 loc) · 1.19 KB
/
routing_engine.example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
RINGBACK_TOP_DIRECTORY: "/opt/sounds"
# For UNIX domain socket access it could look like this
DB_CONFIG:
database: "ywsd"
# If a network connection is desired, it could look like this
#DB_CONFIG:
# host: "mgr.local"
# user: yate
# password: "my_litle_password"
# database: "ywsd"
STAGE2_DB_CONFIG:
database: "ywsd"
# The id of this yate in the yates table to determine if calls are local/remote
LOCAL_YATE_ID: 2
# The name of the yate voip listener that interconnects local yates
INTERNAL_YATE_LISTENER: voip
# The name of a listener that is trusted for all local extensions
#TRUSTED_LOCAL_LISTENERS:
# - internal_udp
CACHE_IMPLEMENTATION: "ywsd.routing_cache.PythonDictRoutingCache"
#CACHE_IMPLEMENTATION: "ywsd.routing_cache.RedisRoutingCache"
#CACHE_CONFIG:
# address: "/run/redis/redis.sock"
# object_lifetime: 600
# Add a logfile here if you want file logging instead of stdout logging
LOG_FILE:
LOG_VERBOSE:
# Details of the yate extmodule connection.
YATE_CONNECTION:
host: localhost
port: 5039
# Alternatively to host/port it can have a sockpath parameter that points to a UNIX domain socket
# Where the web interface should bind.
WEB_INTERFACE:
bind_address: localhost
port: 9000