Apache 2.2

Previous topic Next topic  
 

Apache 2.2 web server for Windows allows running ISAPI modules. For this, a plugin called mod_isapi must be enabled.

 

Apache doesn't have a visual interface for configuration. You must do some modifications to httpd.conf file.

 

First of all, uncomment the following line:

 

LoadModule isapi_module modules/mod_isapi.so

 

Next you must associate .dll files with ISAPI module.

 

Add the following line

 

AddHandler isapi-handler .dll

 

Next step is add your module directory to Apache directory entries.

 

<Directory"C:/webapps">     Options Indexes FollowSymLinks ExecCGI     AllowOverride None     Order allow,deny     Allow from all </Directory>

 

Finally create a new Alias for your directory.

 

Alias /mywebapps "C:/webapps"

 

Be sure to restart your Apache server after making the necessary modifications to httpd.conf file.