#
# This is the OECGI3.EXE Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
# In particular, see 
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
#
# You include this config file into the main Apache HTTP Server config file
# by using the include command. Add the following line to the end of the 
# httpd.conf file found in the apache\conf directory.
#
# include drive:/directory-path/oi_apache.conf
#


# OpenInsight - Directory Permissions
<Directory "c:/webserver/cgi">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

# Setup script alias directories
<IfModule alias_module>
    #
    # ScriptAlias: This controls which directories contain server scripts. 
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client.  The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    #

    ScriptAlias /cgi/ "c:/webserver/cgi/"
    ScriptAlias /examples/ "c:/webserver/cgi/"
</IfModule>