INSTALL revision 45108af9f7bc456c8e9b3bf3ea863f171e6dc9a6
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley APACHE INSTALLATION OVERVIEW
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley For complete installation documentation, see docs/manual/install.html or
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley Quick Start
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley -----------
750f77ade4110c6b2315d6b9e9c22f643914d87drbb $ ./configure --prefix=PREFIX
750f77ade4110c6b2315d6b9e9c22f643914d87drbb $ make install
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley NOTES: * Replace PREFIX with the filesystem path under which
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley Apache should be installed. A typical installation
45108af9f7bc456c8e9b3bf3ea863f171e6dc9a6jwoolley might use "/usr/local/apache2" for PREFIX (without the
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley * If you are building on FreeBSD, be aware that threads will
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley be disabled and the prefork MPM will be used by default,
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley as threads do not work well with Apache on FreeBSD. If
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley you wish to try a threaded Apache on FreeBSD anyway, use
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley "./configure --enable-threads".
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley * If you are a developer building Apache directly from CVS,
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley you will need to run ./buildconf before running configure.
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley For a short impression of what possibilities you have, here is a
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley typical example which configures Apache for the installation tree
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley /sw/pkg/apache with a particular compiler and flags plus the two
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley additional modules mod_rewrite and mod_speling for later loading
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley through the DSO mechanism:
105475009f541187ba7a14a367547d9404c578befielding $ CC="pgcc" CFLAGS="-O2" \
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley ./configure --prefix=/sw/pkg/apache \
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley --enable-rewrite=shared \
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley --enable-speling=shared
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley The easiest way to find all of the configuration flags for Apache 2.0
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley is to run ./configure --help.
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley Thanks for using the Apache HTTP Server, version 2.0.
7a6c08288f79ab1734b98afc114e52cd71f898c0jwoolley The Apache Software Foundation