Project

General

Profile

Feature #1207 ยป apache_configuration.txt

error when i start the httpd service - sandeep kumar, 04/12/2014 05:39 AM

 
1
........................................................................................................
2
settings up web config for vicidial
3
........................................................................................................
4
vi /etc/httpd/conf/httpd.conf
5
change
6

    
7
CustomLog logs/access_log common
8
to
9
CustomLog /dev/null common
10

    
11
To enable web browsing of Recordings on Asterisk server, add this at last line:
12

    
13
Alias /RECORDINGS/ "/var/spool/asterisk/monitorDONE/"
14

    
15
<Directory "/var/spool/asterisk/monitorDONE">
16
    Options Indexes MultiViews
17
    AllowOverride None
18
    Order allow,deny
19
    Allow from all
20
        <files *.mp3>
21
            Forcetype application/forcedownload
22
        </files>
23
</Directory>
    (1-1/1)
    Go to top