parent
2d056baf7e
commit
9fa544a573
27
README.md
27
README.md
|
@ -7,3 +7,30 @@ available and to place individual phones in a queue.
|
||||||
|
|
||||||
* Asterisk with AMI
|
* Asterisk with AMI
|
||||||
* Webserver with PHP (tested with 8.2)
|
* Webserver with PHP (tested with 8.2)
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
### Asterisk Management Interface
|
||||||
|
|
||||||
|
/etc/asterisk/manager.conf
|
||||||
|
|
||||||
|
[general]
|
||||||
|
enabled=yes
|
||||||
|
port=5038
|
||||||
|
bindaddr=0.0.0.0
|
||||||
|
|
||||||
|
[your_ami_user]
|
||||||
|
secret=your_ami_password
|
||||||
|
deny=0.0.0.0/0.0.0.0
|
||||||
|
permit=127.0.0.1/255.255.255.0
|
||||||
|
read=all,system,call,log,verbose,command,agent,user,config
|
||||||
|
write=all,system,call,log,verbose,command,agent,user,config
|
||||||
|
|
||||||
|
### Queue Manager
|
||||||
|
|
||||||
|
/var/www/queuemanager/config.php
|
||||||
|
|
||||||
|
$ami_host = '127.0.0.1';
|
||||||
|
$ami_port = '5038';
|
||||||
|
$ami_user = 'your_ami_user';
|
||||||
|
$ami_pass = 'your_ami_pass';
|
||||||
|
|
Loading…
Reference in New Issue