From 9fa544a5730267478a926938e770fe8bb205e186 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Wed, 23 Aug 2023 15:49:47 +0200 Subject: [PATCH] README.md aktualisiert Update README.md --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index a29c509..141c965 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,30 @@ available and to place individual phones in a queue. * Asterisk with AMI * 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';