github.com/krum110487/go-htaccess@v0.0.0-20240316004156-60641c8e7598/tests/data/apache_2_2_34/INSTALL.txt (about)

     1  
     2    APACHE INSTALLATION OVERVIEW
     3  
     4    CAUTION
     5    -------
     6  
     7    This package represents a legacy version of the Apache HTTP Server software
     8    and is not current.
     9  
    10    Please note that Apache Web Server Project will only provide maintenance
    11    releases of the 2.2.x flavor through June of 2017, and will provide some
    12    security patches beyond this date through at least December of 2017.
    13    Minimal maintenance patches of 2.2.x are expected throughout this period,
    14    and users are strongly discouraged from deploying this legacy release.
    15  
    16    Also note, this package includes very stale and known-vulnerable versions
    17    of the Expat [http://expat.sourceforge.net/] and PCRE [http://www.pcre.org/]
    18    packages. Users are strongly encouraged to first install the most recent
    19    versions of these components.
    20  
    21  
    22    Quick Start - Unix
    23    ------------------
    24  
    25    For complete installation documentation, see [ht]docs/manual/install.html or
    26    http://httpd.apache.org/docs/2.2/install.html
    27  
    28       $ ./configure --prefix=PREFIX
    29       $ make
    30       $ make install
    31       $ PREFIX/bin/apachectl start
    32  
    33       NOTES: * Replace PREFIX with the filesystem path under which 
    34                Apache should be installed.  A typical installation
    35                might use "/usr/local/apache2" for PREFIX (without the
    36                quotes).
    37  
    38              * If you are a developer who will be linking your code with
    39                Apache or using a debugger to step through server code,
    40                ./configure's --with-included-apr option may be advantageous,
    41                as it removes the possibility of version or compile-option
    42                mismatches with APR and APR-util code.  (Many OSes now
    43                include their own version of APR and APR-util.)
    44  
    45              * If you are a developer building Apache directly from
    46                Subversion, you will need to run ./buildconf before running
    47                configure. This script bootstraps the build environment and
    48                requires Python as well as GNU autoconf and libtool. If you
    49                build Apache from a release tarball, you don't have to run
    50                buildconf.
    51  
    52              * If you want to build a threaded MPM (for instance worker)
    53                on  FreeBSD, be aware that threads do not work well with
    54                Apache on FreeBSD versions before 5.4-RELEASE. If you wish
    55                to try a threaded Apache on an earlier version of FreeBSD,
    56                use the --enable-threads parameter to ./configure in
    57                addition to the --with-mpm parameter.
    58  
    59              * If you are building directly from Subversion on Mac OS X
    60                (Darwin), make sure to use GNU Libtool 1.4.2 or newer. All
    61                recent versions of the developer tools on this platform
    62                include a sufficiently recent version of GNU Libtool (named
    63                glibtool, but buildconf knows where to find it).
    64  
    65    For a short impression of what possibilities you have, here is a
    66    typical example which configures Apache for the installation tree
    67    /sw/pkg/apache with a particular compiler and flags plus the two
    68    additional modules mod_rewrite and mod_speling for later loading
    69    through the DSO mechanism:
    70  
    71       $ CC="pgcc" CFLAGS="-O2" \
    72       ./configure --prefix=/sw/pkg/apache \
    73       --enable-rewrite=shared \
    74       --enable-speling=shared 
    75  
    76    The easiest way to find all of the configuration flags for Apache 2.2
    77    is to run ./configure --help.
    78  
    79  
    80    Quick Start - Windows
    81    ---------------------
    82  
    83    For complete documentation, see manual/platform/windows.html.en or
    84    http://httpd.apache.org/docs/2.2/platform/windows.html.
    85  
    86    The Apache/Win32 binaries are distributed as Windows Installer packages 
    87    (.msi) named httpd-2.2.xx-win32-x86-no_ssl.msi for a version without mod_ssl
    88    and httpd-2.2.xx-win32-x86-openssl-0.9.8x.msi for a version including the
    89    mod_ssl plus the openssl library and command line utility.  These packages
    90    may be unpacked without "installing" them by using the msiexec /a option.
    91  
    92    If you have unpacked a source distribution (named httpd-2.2.x-win32-src.zip, 
    93    without any -x86 notation) you must compile the package yourself, see the links
    94    mentioned above.  Unless you intended to do this, please look again for the 
    95    binary package from http://www.apache.org/dist/httpd/binaries/win32/ and
    96    install the desired .msi package.
    97  
    98    The .msi package configures the httpd.conf file, and installs and starts 
    99    the Apache2.2 service for you.  It also installs plenty of useful shortcuts
   100    and the taskbar ApacheMonitor.  We strongly encourage you to use it.
   101  
   102  
   103    Postscript
   104    ----------
   105  
   106    The Apache HTTP Server group cannot field user's installation questions.
   107    There are many valuable forums to help you get started.  Please refer your
   108    questions to the appropriate forum, such as the Users Mailing List at
   109    http://httpd.apache.org/userslist.html or the usenet newsgroups
   110    comp.infosystems.www.servers.unix or
   111    comp.infosystems.www.servers.ms-windows.
   112  
   113    Thanks for using the Apache HTTP Server, version 2.2.
   114  
   115                                       The Apache Software Foundation
   116                                       http://www.apache.org/