source: content/web/apache.xml@ 5367ecb

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 5367ecb was 5367ecb, checked in by Igor Živković <igor@…>, 20 years ago

Updated to Apache-2.0.50.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2469 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY apache-download-http "http://www.apache.org/dist/httpd/httpd-&apache-version;.tar.gz">
8 <!ENTITY apache-download-ftp "ftp://ftp.tux.org/pub/net/apache/dist/httpd/httpd-&apache-version;.tar.gz">
9 <!ENTITY apache-size "5.9 MB">
10 <!ENTITY apache-buildsize "78 MB">
11 <!ENTITY apache-time "1.32 SBU">
12]>
13
14<sect1 id="apache" xreflabel="Apache-&apache-version;">
15<?dbhtml filename="apache.html"?>
16<title>Apache-&apache-version;</title>
17
18<sect2>
19<title>Introduction to <application>Apache</application></title>
20
21<para>The <application>Apache</application> package contains an
22open-source <acronym>HTTP</acronym> server. It is
23useful for creating local intranet web sites or running huge web serving
24operations.</para>
25
26<sect3><title>Package information</title>
27<itemizedlist spacing='compact'>
28<listitem><para>Download (HTTP): <ulink url="&apache-download-http;"/></para></listitem>
29<listitem><para>Download (FTP): <ulink url="&apache-download-ftp;"/></para></listitem>
30<listitem><para>Download size: &apache-size;</para></listitem>
31<listitem><para>Estimated Disk space required: &apache-buildsize;</para></listitem>
32<listitem><para>Estimated build time: &apache-time;</para></listitem></itemizedlist>
33</sect3>
34
35<sect3><title>Additional downloads</title>
36<itemizedlist spacing='compact'>
37<listitem><para>Required Patch: <ulink
38url="&patch-root;/httpd-&apache-version;-config-2.patch"/></para></listitem>
39</itemizedlist></sect3>
40
41<sect3><title><application>Apache</application> dependencies</title>
42<sect4><title>Optional</title>
43<para><xref linkend="db"/> or <xref linkend="gdbm"/>, <xref linkend="openssl"/>,
44<xref linkend="openldap"/>, <xref linkend="expat"/> and
45<ulink url="http://www.stack.nl/~dimitri/doxygen/">doxygen</ulink></para></sect4>
46</sect3>
47
48</sect2>
49
50<sect2>
51<title>Installation of <application>Apache</application></title>
52
53<para>For security reasons, running the server as an unprivileged user and
54group is strongly encouraged.</para>
55
56<screen><userinput><command>groupadd apache &amp;&amp;
57useradd -c apache -d /dev/null -g apache -s /bin/false apache</command></userinput></screen>
58
59<para>The following patch will define the layout of destination directories
60and, among them, the build directory at
61<filename class="directory">/usr/lib/apache/build</filename>. This
62will allow the modules added to <application>Apache</application> to
63be configured without errors. Apply the patch:</para>
64
65<screen><userinput><command>patch -Np1 -i ../httpd-&apache-version;-config-2.patch</command></userinput></screen>
66
67<para>Build and install <application>Apache</application> by running the
68following commands:</para>
69
70<screen><userinput><command>./configure --enable-layout=FHS \
71 --enable-mods-shared=all &amp;&amp;
72make &amp;&amp;
73make install</command></userinput></screen>
74
75</sect2>
76
77<sect2>
78<title>Command explanations</title>
79
80<para><parameter>--with-expat=/usr</parameter>: Uses system installed
81expat. <emphasis>If you have installed expat and do not use this switch, the
82apache installation may overwrite some files from the expat
83installation.</emphasis></para>
84
85<para><parameter>--enable-mods-shared=all</parameter>: We want modules
86to be compiled and used as Dynamic Shared Objects
87(<acronym>DSO</acronym>s) so they can be included and excluded from the
88server using the run-time configuration directives.</para>
89
90<para><option>--enable-ssl</option>: Use this switch
91to create the <filename class="libraryfile">mod_ssl</filename>
92module and enable <acronym>SSL</acronym> support.</para>
93
94</sect2>
95
96<sect2>
97<title>Configuring <application>Apache</application></title>
98
99<sect3>
100<title>Config files</title>
101
102<para><filename>/etc/apache/*</filename></para>
103
104</sect3>
105
106<sect3><title>Configuration Information</title>
107
108<para>The main configuration file is called
109<filename>httpd.conf</filename>. Modify it to run the server as a
110dedicated user:</para>
111
112<screen><userinput><command>sed -i -e "s%User nobody%User apache%" -e "s%^Group #-1%Group apache%" /etc/apache/httpd.conf</command></userinput></screen>
113
114<para>See
115<ulink url="http://httpd.apache.org/docs-2.0/configuring.html"/> for
116detailed instructions on customizing your Apache <acronym>HTTP</acronym>
117server.</para>
118
119<para>Install the <filename>/etc/rc.d/init.d/apache</filename>
120init script included in the <xref linkend="intro-important-bootscripts"/>
121package.</para>
122
123<screen><userinput><command>make install-apache</command></userinput></screen>
124
125</sect3>
126
127</sect2>
128
129<sect2>
130<title>Contents</title>
131
132<para>The <application>Apache</application> package provides
133<command>ab</command>,
134<command>apachectl</command>,
135<command>apr-config</command>,
136<command>apu-config</command>,
137<command>apxs</command>,
138<command>checkgid</command>,
139<command>dbmmanage</command>,
140<command>htdbm</command>,
141<command>htdigest</command>,
142<command>htpasswd</command>,
143<command>httpd</command>,
144<command>instdso.sh</command>,
145<command>logresolve</command>,
146<command>rotatelogs</command>,
147<filename class="libraryfile">libapr</filename>,
148<filename class="libraryfile">libaprutil</filename> and
149various modules.</para>
150</sect2>
151
152<sect2><title>Description</title>
153
154<sect3><title>ab</title>
155<para><command>ab</command> is a tool for benchmarking your
156<application>Apache</application> <acronym>HTTP</acronym> server.
157</para></sect3>
158
159<sect3><title>apachectl</title>
160<para><command>apachectl</command> is a front end to the
161<application>Apache</application> <acronym>HTTP</acronym>
162server which is designed to help the administrator control the
163functioning of the <application>Apache</application> httpd daemon.</para></sect3>
164
165<sect3><title>apxs</title>
166<para><command>apxs</command>
167is a tool for building and installing extension modules for the
168<application>Apache</application> <acronym>HTTP</acronym> server.</para></sect3>
169
170<sect3><title>dbmmanage</title>
171<para><command>dbmmanage</command> is used to create and update the
172<filename>DBM</filename> format files used to store usernames and passwords
173for basic authentication of <acronym>HTTP</acronym>
174users.</para></sect3>
175
176<sect3><title>htdigest</title>
177<para><command>htdigest</command> is used to create and update the
178flat-files used to store usernames, realms and passwords for digest
179authentication of <acronym>HTTP</acronym> users.</para></sect3>
180
181<sect3><title>htpasswd</title>
182<para><command>htpasswd</command> is used to create and update the
183flat-files used to store usernames and passwords for basic authentication of
184<acronym>HTTP</acronym> users.</para></sect3>
185
186<sect3><title>httpd</title>
187<para><command>httpd</command> is the <application>Apache</application>
188<acronym>HTTP</acronym> server program.</para></sect3>
189
190<sect3><title>instdso.sh</title>
191<para><command>instdso.sh</command> is a script which installs
192<application>Apache</application> <acronym>DSO</acronym> modules.</para></sect3>
193
194<sect3><title>logresolve</title>
195<para><command>logresolve</command> is a post-processing program to
196resolve <acronym>IP</acronym>-addresses in <application>Apache</application>'s
197access log files.</para></sect3>
198
199<sect3><title>rotatelogs</title>
200<para><command>rotatelogs</command> is a simple program for use in conjunction
201with <application>Apache</application>'s piped log file feature.</para></sect3>
202
203</sect2>
204
205</sect1>
Note: See TracBrowser for help on using the repository browser.