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

  1. Installing Apache for OS/2
  2. -----------------------------------------------------------------------
  3.  
  4. Setting up a new installation:
  5.  
  6.    * Install the EMX runtime per the included instructions in EMXRT.DOC.
  7.      
  8.    * Unzip Apache to the root of the partition it will be running from
  9.      with Info-Zip for OS/2.
  10.      
  11.          CD \
  12.          unzip apachxxx.zip
  13.      
  14.    * XCOPY the Apache distribution to the directory you will run from.
  15.      
  16.          XCOPY \apache_x.x.x\* \os2httpd /s /e
  17.      
  18.    * Create the default configuration files by copying the distribution
  19.      files.
  20.          CD \os2httpd\conf
  21.          COPY *.conf-dist *.conf
  22.      
  23.    * Modify the configuration files as needed for your server setup.
  24.      Refer to http://www.apache.org/docs/ for details on configuration.
  25.      
  26.    * Start Apache with the appropriate command line options. Specifying
  27.      the document root directory (-d) and the location and name of the
  28.      configuration file (-f).
  29.          CD \os2httpd
  30.          httpd -d /os2httpd/docs -f /os2httpd/conf/httpd.conf
  31.      Please note the use of "/" instead of "\" for the directory
  32.      seperator.
  33.  
  34.  
  35. Upgrading from a previous installation:
  36.  
  37.    * Make sure you have the currently required version of EMX. This can
  38.      be check by running EMXREV from the directory where Apache runs
  39.      from. Your output should be higher or equal to the following.
  40.  
  41.         EMX : revision = 41
  42.         EMXIO : revision = 40
  43.         EMXLIBC : revision = 40
  44.         EMXLIBCM : revision = 42
  45.         EMXLIBCS : revision = 42
  46.         EMXWRAP : revision = 40     
  47.    * XCOPY the Apache distribution to the directory where Apache is
  48.      current installed.
  49.          XCOPY \apache_x.x.x\* \os2httpd /s /e
  50.      
  51.    * Compare your config files to the distribution config files to make
  52.      sure you have all the currently required options. This can be done
  53.      with GNU Diff per the following example.
  54.          diff --ignore-space-change httpd.conf httpd.conf-dist | more
  55.      
  56.