Skip to main content

Allow recording link/filename on web with full name

 

To enable web browsing of Recordings on Asterisk server, add the below line  at last line of httpd.conf

 

Alias /RECORDINGS/ “/var/spool/asterisk/monitorDONE/”

<Directory “/var/spool/asterisk/monitorDONE”>
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