home *** CD-ROM | disk | FTP | other *** search
/ Magazyn WWW 1999 July / www_07_1999.iso / prez / amiga / apache_1_0_5.lha / apache_1.0.5 / README < prev    next >
Text File  |  1996-06-25  |  2KB  |  60 lines

  1.                  Apache
  2.                  Version 1.0 (and up)
  3.  
  4. What is it?
  5. -----------
  6.  
  7. Apache is an HTTP server designed as a plug-in replacement for the NCSA
  8. server version 1.3 (or 1.4). It fixes numerous bugs in the NCSA server and
  9. includes many frequently requested new features, and has an API which
  10. allows it to be extended to meet users' needs more easily.
  11.  
  12. Documentation
  13. -------------
  14.  
  15. All the documentation is on-line on the WWW, via <URL:http://www.apache.org/>.
  16.  
  17. Installation
  18. ------------
  19.  
  20. Installation is by the included install script.
  21.  
  22. The next step is to edit the configuration files for the server.  In
  23. the subdirectory called "conf" you should find distribution versions
  24. of the three configuration files: srm.conf-dist, access.conf-dist, and
  25. httpd.conf-dist.  Copy them to srm.conf, access.conf, httpd.conf
  26. respectively. Sample ones are already supplied with the needed information
  27. changed so you can get apache up and running immediately.
  28.  
  29. First edit httpd.conf.    This sets up general attributes about the
  30. server - the port number, the user it runs as, etc.  Next edit the
  31. srm.conf file - this sets up the root of the document tree, special
  32. functions like server-parsed HTML or internal imagemap parsing, etc.
  33. Finally, edit the access.conf file to at least set the base cases of
  34. access. Documentation for all of these is located at
  35. <URL:http://www.apache.org/docs/>.
  36.  
  37. Finally, make a call to httpd, with a -f to the full path to the
  38. httpd.conf file.  I.e., the common case:
  39.  
  40.   apache:httpd -f apache:conf/httpd.conf
  41.  
  42. And voila!  The server should be running.
  43.  
  44. By default the srm.conf and access.conf files are located by name - to
  45. specifically call them by other names, use the AccessConfig and
  46. ResourceConfig directives in httpd.conf.
  47.  
  48. The Latest Version
  49. ------------------
  50.  
  51. Details of the latest version are in the apache project page (above).
  52. The most recent distribution is also available by anonymous ftp
  53. from ftp.ast.cam.ac.uk in the directory /pub/WWW/apache.
  54.  
  55. Licencing
  56. ---------
  57.  
  58. Please see the file called LICENSE.
  59.  
  60.