ScriptAlias /haci/HaCi.cgi 	/usr/share/haci/cgi-bin/HaCi.cgi
ScriptAlias /haci/HaciAPI.cgi	/usr/share/haci/cgi-bin/HaCiAPI.cgi
ScriptAlias /haci/test.cgi	/usr/share/haci/cgi-bin/test.cgi

Alias /haci/ /usr/share/haci/html/
# allow people to read the files
<Directory "/usr/share/haci/html/">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
</Directory>

<Location "/haci/*.cgi">
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0
# Before uncommenting the following lines please put IP address
# of your computer in the Allow line
        # Allow from REPLACE-WITH.YOUR-HOST.IP-ADDRESS
# IPv6 addresses work only with apache2
        Allow from ::1/128
</Location>
