Apache HTTP Server Version 2.4

The Apache HTTP Server is released as source code. This document covers building and installing the server from source on Unix and Unix-like systems. For Windows, see Using Apache HTTP Server with Microsoft Windows and Compiling Apache httpd for Microsoft Windows. For other platforms, see the platform documentation.
If you install httpd from a distribution package (RPM, DEB, etc.), configuration layout and defaults may differ from what is described here. See third-party packages below, and consult your distribution's documentation for platform-specific details.
If you are upgrading from one minor version to the next (for example, 2.4.66 to 2.4.67), please skip down to the upgrading section.
Overview for the
impatient
Requirements
Download
Extract
Configuring the source tree
Build
Install
Customize
Test
Upgrading
Third-party packages| Download | Download the latest release from https://httpd.apache.org/download.cgi |
| Extract | $ tar xzf httpd-NN.tar.gz $ cd httpd-NN |
| Configure | $ ./configure --prefix=PREFIX
|
| Compile | $ make |
| Install | $ make install |
| Customize | $ vi PREFIX/conf/httpd.conf |
| Test | $ PREFIX/bin/apachectl -k start
|
NN must be replaced with the current version
number, and PREFIX must be replaced with the
filesystem path under which the server should be installed. If
PREFIX is not specified, it defaults to
/usr/local/apache2.
Each section of the compilation and installation process is described in more detail below, beginning with the requirements for compiling and installing Apache httpd.
The following requirements exist for building and running Apache httpd:
/httpd_source_tree_root/srclib/apr and /httpd_source_tree_root/srclib/apr-util
(be sure the directory names do not have version numbers; for example,
the APR distribution must be under /httpd_source_tree_root/srclib/apr/) and use
./configure's --with-included-apr
option. On some platforms, you may have to install the
corresponding -dev packages to allow httpd to build
against your installed copy of APR and APR-Util.pcre2-config script installed by the PCRE2 build,
point to it using the --with-pcre parameter. On some platforms,
you may have to install the corresponding -dev
package (e.g. libpcre2-dev or pcre2-devel)
to allow httpd to build against your installed copy of PCRE2.PATH must contain
basic build tools such as make.systemd-timesyncd or chrony by
default. Verify that time synchronization is active on your
system before running a production server.apxs or dbmmanage (which are
written in Perl) the Perl 5 interpreter is required.
If no Perl 5 interpreter is found by the
configure script, you will not be able to use
the affected support scripts. Of course, you will still be able to
build and use Apache httpd.Download the source tarball from the Apache HTTP Server download site.
After downloading, it is important to verify that you have a complete and unmodified version of the Apache HTTP Server. This can be accomplished by testing the downloaded tarball against the PGP signature. Details on how to do this are available on the verification page.
Extract the source from the Apache HTTP Server tarball:
$ tar xzf httpd-NN.tar.gz
This will create a new directory under the current directory
containing the source code for the distribution. You should
cd into that directory before proceeding with
compiling the server.
The next step is to configure the httpd source tree for your
particular platform and personal requirements. This is done using
the script configure included in
the root directory of the distribution. (Developers downloading
an unreleased version of the httpd source tree will need to have
autoconf and libtool installed and will
need to run buildconf before proceeding with the next
steps. This is not necessary for official releases.)
To configure the source tree using all the default options,
type ./configure. To change the default
options, configure accepts a variety of variables
and command line options.
The most important option is the location --prefix
where httpd is to be installed later, because httpd has to be
configured for this location to work correctly. More fine-tuned
control of the location of files is possible with additional configure
options.
Also at this point, you can specify which features you
want included in httpd by enabling and disabling modules. httpd comes with a wide range of modules
included by default. They will be compiled as
shared objects (DSOs) which can be loaded
or unloaded at runtime.
You can also choose to compile modules statically by using the option
--enable-module=static.
Additional modules are enabled using the
--enable-module option, where
module is the name of the module with the
mod_ string removed and with any underscore converted
to a dash. Similarly, you can disable modules with the
--disable-module option. Be careful when
using these options, since configure cannot warn you
if the module you specify does not exist; it will ignore the option.
In addition, it is sometimes necessary to provide the
configure script with extra information about the
location of your compiler, libraries, or header files. This is
done by passing either environment variables or command line
options to configure. For more information, see the
configure manual page. Or invoke
configure using the --help option.
For a short impression of what possibilities you have, here
is a typical example which compiles httpd for the installation
tree /sw/pkg/apache with a particular compiler and flags
plus the two additional modules mod_ldap and
mod_lua:
$ CC="pgcc" CFLAGS="-O2" \ ./configure --prefix=/sw/pkg/apache \ --enable-ldap=shared \ --enable-lua=shared
When configure is run it will take several minutes to
test for the availability of features on your system and build
Makefiles which will later be used to compile the server.
Details on all the different configure options are
available on the configure manual page.
Now you can build the various parts which form the httpd package by running:
$ make
Please be patient here, since a base configuration takes several minutes to compile and the time will vary widely depending on your hardware and the number of modules that you have enabled.
Now it's time to install the package under the configured
installation PREFIX (see --prefix option
above) by running:
$ make install
This step will typically require root privileges, since PREFIX is usually a directory with restricted write permissions.
If you are upgrading, the installation will not overwrite your configuration files or documents.
Next, you can customize your Apache HTTP Server by editing
the configuration files under
PREFIX/conf/.
$ vi PREFIX/conf/httpd.conf
Have a look at the httpd manual under
PREFIX/docs/manual/ or consult https://httpd.apache.org/docs/2.4/ for the most recent
version of this manual and a complete reference of available configuration directives.
Now you can start your Apache HTTP Server by immediately running:
$ PREFIX/bin/apachectl -k start
You should then be able to request your first document
via the URL http://localhost/. The web page you see is located
under the DocumentRoot,
which will usually be PREFIX/htdocs/.
Then stop the server again by
running:
$ PREFIX/bin/apachectl -k stop
The first step in upgrading is to read the release announcement
and the file CHANGES in the source distribution to
find any changes that may affect your site. When changing between
major releases (for example, from 2.4 to 2.6),
there will likely be major differences in the compile-time and
run-time configuration that will require manual adjustments. All
modules will also need to be upgraded to accommodate changes in the
module API.
Upgrading from one minor version to the next (for example, from
2.4.66 to 2.4.67) is easier. The make install
process will not overwrite any of your existing documents, log
files, or configuration files. In addition, the developers make
every effort to avoid incompatible changes in the
configure options, run-time configuration, or the
module API between minor versions. In most cases you should be able to
use an identical configure command line, an identical
configuration file, and all of your modules should continue to
work.
To upgrade across minor versions, start by finding the file
config.nice in the build directory of
your installed server or at the root of the source tree for your
old install. This will contain the exact
configure command line that you used to
configure the source tree. Then to upgrade from one version to
the next, you need only copy the config.nice file to
the source tree of the new version, edit it to make any desired
changes, and then run:
$ ./config.nice $ make $ make install $ PREFIX/bin/apachectl -k graceful-stop $ PREFIX/bin/apachectl -k start
--prefix and a
different port (by adjusting the Listen directive) to test for any
incompatibilities before doing the final upgrade.You can pass additional arguments to config.nice,
which will be appended to your original configure
options:
$ ./config.nice --prefix=/home/test/apache --with-port=90
Many operating systems ship pre-built Apache httpd packages. These are convenient for getting started quickly, but they often differ from a source build in configuration file layout, compiled-in modules, and default paths. The documentation on this site describes the server as built from source; if you are using a platform package, consult your distribution's documentation for platform-specific details.
Some common examples:
sudo dnf install httpd sudo systemctl start httpd
See the Fedora project's documentation for configuration layout and platform-specific notes.
sudo apt install apache2 sudo systemctl start apache2
See Ubuntu's documentation for configuration layout and platform-specific notes.
Our software license not only permits, but encourages, this kind of redistribution. However, it does result in a situation where the configuration layout and defaults on your installation of the server may differ from what is stated in the documentation. A description of these third-party distributions is available in the HTTP Server wiki.