home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 May / PCO_5_97.ISO / FilesBBS / OS2 / APACH113.ARJ / APACH113 / APACH113.ZIP / apache_1.1.3 / install.os2 < prev    next >
Encoding:
Text File  |  1997-02-04  |  2.2 KB  |  74 lines

  1. Installing Apache for OS/2
  2.  
  3. Setting up a new installation:
  4. ==============================
  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 with
  9. 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 files.
  19.  
  20.     CD \os2httpd\conf
  21.     COPY *.conf-dist *.conf
  22.  
  23. Modify the configuration files as needed for your server setup. Refer to
  24. http://www.apache.org/docs/
  25. for details on configuration.
  26.  
  27. Create the Apache folder and icons by running the makefolder.cmd command.
  28.  
  29.     CD \os2httpd\os2
  30.     makefolder.cmd
  31.  
  32. Upgrading from a previous installation:
  33. =======================================
  34.  
  35. Make sure you have the currently required version of EMX. This can be check by
  36. running EMXREV from the directory where Apache is installed. Your output 
  37. should be higher or equal to the following.
  38.  
  39. EMX : revision = 50
  40. EMXIO : revision = 50
  41. EMXLIBC : revision = 50
  42. EMXLIBCM : revision = 50
  43. EMXLIBCS : revision = 52
  44. EMXWRAP : revision = 50
  45.  
  46. NOTE: From version 1.1.1 to 1.1.3 the html documents directory was
  47. changed from "docs" to "htdocs" and "docs/apachedocs" was changed to
  48. "htdocs/manual".
  49.  
  50. Make sure any files in the new html document directory will not overwrite
  51. or conflict with existing files that should not be overwritten. Such as the
  52. htdocs/index.html file.
  53.  
  54. XCOPY the Apache distribution to the directory where Apache is current installed.
  55. For example:
  56.  
  57.     XCOPY \apache_x.x.x\* \os2httpd /s /e /v
  58.  
  59. Compare your config files to the distribution config files to make sure you have
  60. all the currently required options. This can be done with
  61. GNU Diff per the following examples.
  62.  
  63.     diff -B -b -C3 httpd.conf httpd.conf-dist | more
  64.     diff -B -b -C3 access.conf access.conf-dist | more
  65.     diff -B -b -C3 srm.conf srm.conf-dist | more
  66.  
  67. NOTE: The command line options to diff are case sensative.
  68.  
  69. Update the Apache folder and icons by running the makefolder.cmd command.
  70.  
  71.     CD \os2httpd\os2
  72.     makefolder.cmd
  73.  
  74.