home *** CD-ROM | disk | FTP | other *** search
- Installing Apache for OS/2
- -----------------------------------------------------------------------
-
- Setting up a new installation:
-
- * Install the EMX runtime per the included instructions in EMXRT.DOC.
-
- * Unzip Apache to the root of the partition it will be running from
- with Info-Zip for OS/2.
-
- CD \
- unzip apachxxx.zip
-
- * XCOPY the Apache distribution to the directory you will run from.
-
- XCOPY \apache_x.x.x\* \os2httpd /s /e
-
- * Create the default configuration files by copying the distribution
- files.
- CD \os2httpd\conf
- COPY *.conf-dist *.conf
-
- * Modify the configuration files as needed for your server setup.
- Refer to http://www.apache.org/docs/ for details on configuration.
-
- * Start Apache with the appropriate command line options. Specifying
- the document root directory (-d) and the location and name of the
- configuration file (-f).
- CD \os2httpd
- httpd -d /os2httpd/docs -f /os2httpd/conf/httpd.conf
- Please note the use of "/" instead of "\" for the directory
- seperator.
-
-
- Upgrading from a previous installation:
-
- * Make sure you have the currently required version of EMX. This can
- be check by running EMXREV from the directory where Apache runs
- from. Your output should be higher or equal to the following.
-
- EMX : revision = 41
- EMXIO : revision = 40
- EMXLIBC : revision = 40
- EMXLIBCM : revision = 42
- EMXLIBCS : revision = 42
- EMXWRAP : revision = 40
- * XCOPY the Apache distribution to the directory where Apache is
- current installed.
- XCOPY \apache_x.x.x\* \os2httpd /s /e
-
- * Compare your config files to the distribution config files to make
- sure you have all the currently required options. This can be done
- with GNU Diff per the following example.
- diff --ignore-space-change httpd.conf httpd.conf-dist | more
-
-