README.md aktualisiert

Update README.md
This commit is contained in:
Stefan Ritter 2023-08-23 15:49:47 +02:00
parent 2d056baf7e
commit 9fa544a573
1 changed files with 27 additions and 0 deletions

View File

@ -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';