home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 8 / CDACTUAL8.iso / share / os2 / varios / apache / install < prev    next >
Encoding:
Text File  |  1996-05-08  |  1.9 KB  |  52 lines

  1. This release of Apache supports the notion of "optional modules".
  2. However, the server has to know which modules are compiled into it, in
  3. order for those modules to be effective; this requires generation of a
  4. short bit of code ("modules.c") which simply has a list of them.
  5.  
  6. It is also necessary to choose the correct options for your platform.
  7.  
  8. To do this:
  9.  
  10. 1) Copy the file "Configuration.tmpl" to "Configuration" and then edit
  11.    "Configuration".  This contains the per-machine config settings of
  12.    the Makefile, and also an additional section at the bottom which
  13.    lists the modules which have been compiled in, and also names the
  14.    files containing them.  You will need to:
  15.  
  16.    a) Select a compiler, and compilation options as appropriate to
  17.       your machine.
  18.  
  19.    b) Uncomment lines corresponding to those optional modules you wish
  20.       to include (among the Module lines at the bottom of the file),
  21.       or add new lines corresponding to custom modules you have written.
  22.       (See API.html for preliminary docs on how to do that).    
  23.  
  24.       Note that DBM auth has to be explicitly configured in, if you want
  25.       it --- just uncomment the corresponding line.
  26.  
  27. 2) Run the "Configure" script:
  28.  
  29.       % Configure
  30.       Using 'Configuration' as config file
  31.       %
  32.  
  33.    This generates new versions of the Makefile and of modules.c.  (If
  34.    you want to maintain multiple configurations, you can say, e.g.,
  35.  
  36.       % Configure -file Configuration.ai
  37.       Using alternate config file Configuration.ai
  38.       % 
  39.  
  40. 3) Type "make".
  41.  
  42. The modules we place in the Apache distribution are the ones we have
  43. tested and are used regularly by various members of the Apache
  44. development group.  Additional modules contributed by members or third
  45. parties with specific needs or functions are available at
  46. <URL:http://www.apache.org/dist/contrib/modules/>.  There are
  47. instructions on that page for linking these modules into the
  48. core Apache code.
  49.  
  50.  
  51.  
  52.