-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.sample
36 lines (32 loc) · 1.02 KB
/
.env.sample
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
# for route /api/call/recording
# call recordings will be downloaded from this folder
# if the ari version is less than 14 and there
# is no file download function via ari
path_recordings = "/var/spool/asterisk/monitor/"
# Customer webhook url
webhook_url = "https://eurodoo.com/asterisk/events"
# Asterisk database settings
db_host = ""
db_port = 5000
db_database = ""
db_user = ""
db_password = ""
db_dialect = "mysql"
db_table_cdr_name = "cdr"
db_check_cdr_enable = 1
# Asterisk ARI settings
ari_enable = 1
ari_url = "http://mypbx.com:8088/ari"
ari_wss = "ws://mypbx:8088/ari/events"
ari_login = "freepbxuser"
ari_password = "1234567890"
ari_events_ignore = ["ChannelVarset", "ChannelDialplan"]
ari_events_used = ["RecordingFinished", "RecordingStarted","ChannelStateChange","ChannelDestroyed","ChannelHangupRequest"]
# Asterisk AMI settings
ami_enable = 1
ami_host = "mypbx.com"
ami_port = 5038
ami_login = "freepbxuser"
ami_password = "1234567890"
ami_events_ignore = []
ami_events_used = ["Newchannel", "DialBegin", "DialEnd", "Hangup"]