http.conf
// Specify the top of the directory tree for the
// server's configuration, error, and log files.
// Specify the server hostname and administrator email
ServerRoot "C:/Program Files/Apache Group/Apache"
ServerAdmin emailaddress
ServerName hostname
srm.conf
// Redefine the directories to serve web documents
DocumentRoot "c:/Progra~1/Apache~1/InetCam/htdocs"
ScriptAlias /cgi c:/Progra~1/Apache~1/InetCam/CGI
access.conf
// Configure allowed services and features for Apache
<Directory c:\Progra~1\Apache~1\InetCam\CGI>
Options ExecCGI
AllowOverride All
<Limit GET POST>
order allow,deny
allow from all
</Limit>
</Directory>
<Directory c:\Progra~1\Apache~1\InetCam\htdocs>
Options Indexes FollowSymLinks
AllowOverride All
<Limit GET POST>
order allow,deny
allow from all
</Limit>
</Directory>
|