To enable web browsing of Recordings on Asterisk server, add the below line at last line of httpd.conf
Alias /RECORDINGS/ “/var/spool/asterisk/
<Directory “/var/spool/asterisk/
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
<files *.mp3>
Forcetype application/forcedownload
</files>
</Directory>
Restart the Apache web server to apply the changes
service httpd restart
chkconfig httpd on
Comments
Post a Comment