Is there a basic example of DSO deployment under Apache 2?
This example will assume the module to deploy is the DSO from the Guess demo, GuessDSOTwo.dll. Note that Apache 2 is case sensitive. a) Look for the ServerRoot variable in the configuration file of Apache, http.conf. The cofiguration file is located in the conf subfolder of the Apache, so for the typical installation, this would be: C:\Program Files\Apache Group\Apache2\conf. b) Place your DSO module in one of the subfolders of the ServerRoot location. Usually, modules are located in the modules subfolder. For the typical installation, the modules folder is: C:\Program Files\Apache Group\Apache2\modules. c) configure the webserver to load the DSO module: – load the DSO at startup. Use the LoadModule instruction for this opperation in the http.conf file: LoadModule ‘DSO export name’ ‘path to DSO module relative to ServerRoot’ ‘DSO export name’ is the identifier defined in the exports clause in the .dpr. For the Guess demo, this will be GuessDSO_module as per this lines: exports apache_m