mturk       2005/09/12 06:53:10

  Modified:    jk/xdocs/config iis.xml
  Log:
  Doc patch #35299 by Tim Whittington.
  
  Revision  Changes    Path
  1.3       +46 -2     jakarta-tomcat-connectors/jk/xdocs/config/iis.xml
  
  Index: iis.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/config/iis.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- iis.xml   23 Feb 2005 08:10:20 -0000      1.2
  +++ iis.xml   12 Sep 2005 13:53:10 -0000      1.3
  @@ -75,6 +75,50 @@
   
   </attributes>
   </section> 
  - 
  +<section name="Using a properties file for configuration">
  +<p>
  +The ISAPI redirector can read it's configuration from a properties file 
instead of the registry. 
  +This has the advantage that you can use multiple ISAPI redirectors with 
independant configurations on the same server.
  +The redirector will check for the properties file during initialisation, and 
use it in preference to the registry if present.
  +</p>
  +<p>
  +Create a properties file in the same directory as the ISAPI redirector 
called <b>isapi_redirect.properties</b> i.e. with the same name as the ISAPI 
redirector DLL but with a <em>.properties</em> extension. A sample 
isapi_redirect.properties can be found under the conf directory.
  +</p>
  +<p>
  +The property names and values in the properties file are the same as for the 
registry settings described above. For example:
  +</p>
  +<p>
  +<source>
  +# Configuration file for the Jakarta ISAPI Redirector
  +
  +# The path to the ISAPI Redirector Extension, relative to the website
  +# This must be in a virtual directory with execute privileges
  +extension_uri=/jakarta/isapi_redirect.dll
  +
  +# Full path to the log file for the ISAPI Redirector
  +log_file=c:\jakarta-tomcat\logs\isapi_redirect.log
  +
  +# Log level (debug, info, warn, error or trace)
  +log_level=info
  +
  +# Full path to the workers.properties file
  +worker_file=c:\jakarta-tomcat\conf\workers.properties
  +
  +# Full path to the uriworkermap.properties file
  +worker_mount_file=c:\jakarta-tomcat\conf\uriworkermap.properties
  +</source>
  +</p>
  +<p>
  +    Notes: 
  +    <ul>
  +        <li>
  +            Back-slashes - '\' - are not escape characters.
  +        </li>
  +        <li>
  +            Comment lines begin with '#'.
  +        </li>
  +    </ul>
  +</p>
  +</section>
   </body>
  -</document>
  \ No newline at end of file
  +</document>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to