Changeset ff3fa53


Ignore:
Timestamp:
09/13/2003 12:39:14 AM (21 years ago)
Author:
Igor Živković <igor@…>
Branches:
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, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
ab8de21f
Parents:
7891efc
Message:

update to Apache-2.0.47

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

Files:
15 edited

Legend:

Unmodified
Added
Removed
  • appendices/symlinks/rc0.xml

    r7891efc rff3fa53  
    7878
    7979<row>
     80<entry>K28</entry>
     81<entry>apache</entry>
     82<entry><filename>../init.d/apache</filename></entry>
     83<entry>Shut down Apache Daemon: <xref linkend="apache"/></entry>
     84</row>
     85
     86<row>
    8087<entry>K30</entry>
    8188<entry>sshd</entry>
  • appendices/symlinks/rc1.xml

    r7891efc rff3fa53  
    6161<entry><filename>../init.d/postgres</filename></entry>
    6262<entry>Shut down PostgreSQL Daemon: <xref linkend="postgres"/></entry>
     63</row>
     64
     65<row>
     66<entry>K28</entry>
     67<entry>apache</entry>
     68<entry><filename>../init.d/apache</filename></entry>
     69<entry>Shut down Apache Daemon: <xref linkend="apache"/></entry>
    6370</row>
    6471
  • appendices/symlinks/rc2.xml

    r7891efc rff3fa53  
    5454<entry><filename>../init.d/postgres</filename></entry>
    5555<entry>Shut down PostgreSQL Daemon: <xref linkend="postgres"/></entry>
     56</row>
     57
     58<row>
     59<entry>K28</entry>
     60<entry>apache</entry>
     61<entry><filename>../init.d/apache</filename></entry>
     62<entry>Shut down Apache Daemon: <xref linkend="apache"/></entry>
    5663</row>
    5764
  • appendices/symlinks/rc3.xml

    r7891efc rff3fa53  
    106106
    107107<row>
     108<entry>S32</entry>
     109<entry>apache</entry>
     110<entry><filename>../init.d/apache</filename></entry>
     111<entry>Start Apache Daemon: <xref linkend="apache"/></entry>
     112</row>
     113
     114<row>
    108115<entry>S34</entry>
    109116<entry>mysql</entry>
  • appendices/symlinks/rc4.xml

    r7891efc rff3fa53  
    106106
    107107<row>
     108<entry>S32</entry>
     109<entry>apache</entry>
     110<entry><filename>../init.d/apache</filename></entry>
     111<entry>Start Apache Daemon: <xref linkend="apache"/></entry>
     112</row>
     113
     114<row>
    108115<entry>S34</entry>
    109116<entry>mysql</entry>
  • appendices/symlinks/rc5.xml

    r7891efc rff3fa53  
    9999
    100100<row>
     101<entry>S32</entry>
     102<entry>apache</entry>
     103<entry><filename>../init.d/apache</filename></entry>
     104<entry>Start Apache Daemon: <xref linkend="apache"/></entry>
     105</row>
     106
     107<row>
    101108<entry>S34</entry>
    102109<entry>mysql</entry>
  • appendices/symlinks/rc6.xml

    r7891efc rff3fa53  
    7171
    7272<row>
     73<entry>K28</entry>
     74<entry>apache</entry>
     75<entry><filename>../init.d/apache</filename></entry>
     76<entry>Shut down Apache Daemon: <xref linkend="apache"/></entry>
     77</row>
     78
     79<row>
    7380<entry>K30</entry>
    7481<entry>sshd</entry>
  • content/web/apache/apache-config.xml

    r7891efc rff3fa53  
     1<sect2>
     2<title>Configuring Apache</title>
     3
     4<sect3>
     5<title>Config files</title>
     6
     7<para><filename>/etc/apache/*</filename></para>
     8
     9</sect3>
     10
     11<sect3><title>Configuration Information</title>
     12
     13<para>The main configuration file is called
     14<filename>httpd.conf</filename>. See
     15<ulink
     16url="http://httpd.apache.org/docs-2.0/configuring.html">http://httpd.apache.org/docs-2.0/configuring.html</ulink> for detailed
     17instructions on customizing your Apache <acronym>HTTP</acronym>
     18server.</para>
     19
     20<para>To automate the running of Apache, use the following command to
     21create the init.d script:</para>
     22
     23<screen><userinput><command>cat &gt; /etc/rc.d/init.d/apache &lt;&lt; "EOF"
     24#!/bin/bash
     25
     26source /etc/sysconfig/rc
     27source $rc_functions
     28
     29case "$1" in
     30        start)
     31                echo "Starting Apache daemon..."
     32                /usr/sbin/apachectl -k start
     33                evaluate_retval
     34                ;;
     35
     36        stop)
     37                echo "Stopping Apache daemon..."
     38                /usr/sbin/apachectl -k stop
     39                evaluate_retval
     40                ;;
     41
     42        restart)
     43                echo "Restarting Apache daemon..."
     44                /usr/sbin/apachectl -k restart
     45                evaluate_retval
     46                ;;
     47
     48        status)
     49                statusproc /usr/sbin/httpd
     50                ;;
     51               
     52        *)
     53                echo "Usage: $0 {start|stop|restart|status}"
     54                exit 1
     55                ;;
     56esac
     57EOF
     58chmod 755 /etc/rc.d/init.d/apache</command></userinput></screen>
     59
     60<para>Create the symbolic links to this file in the relevant
     61<filename class="directory">rc.d</filename> directory
     62with the following commands:</para>
     63
     64<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
     65ln -sf ../init.d/apache ../rc0.d/K28apache &amp;&amp;
     66ln -sf ../init.d/apache ../rc1.d/K28apache &amp;&amp;
     67ln -sf ../init.d/apache ../rc2.d/K28apache &amp;&amp;
     68ln -sf ../init.d/apache ../rc3.d/S32apache &amp;&amp;
     69ln -sf ../init.d/apache ../rc4.d/S32apache &amp;&amp;
     70ln -sf ../init.d/apache ../rc5.d/S32apache &amp;&amp;
     71ln -sf ../init.d/apache ../rc6.d/K28apache</command></userinput></screen>
     72
     73</sect3>
     74
     75</sect2>
  • content/web/apache/apache-desc.xml

    r7891efc rff3fa53  
     1<sect2>
     2<title>Contents</title>
     3
     4<para>The Apache package provides
     5<command>ab</command>,
     6<command>apachectl</command>,
     7<command>apr-config</command>,
     8<command>apu-config</command>,
     9<command>apxs</command>,
     10<command>checkgid</command>,
     11<command>dbmmanage</command>,
     12<command>htdbm</command>,
     13<command>htdigest</command>,
     14<command>htpasswd</command>,
     15<command>httpd</command>,
     16<command>logresolve</command>,
     17<command>rotatelogs</command>,
     18<filename class="libraryfile">libapr</filename>,
     19<filename class="libraryfile">libaprutil</filename> and
     20various modules.</para>
     21
     22</sect2>
     23
     24<sect2><title>Description</title>
     25
     26<sect3><title>ab</title>
     27<para><command>ab</command> is a tool for benchmarking your Apache <acronym>HTTP</acronym> server.
     28</para></sect3>
     29
     30<sect3><title>apachectl</title>
     31<para><command>apachectl</command> is a frontend to the Apache <acronym>HTTP</acronym>
     32server which is designed to help the administrator control the functioning of the Apache
     33httpd daemon.</para></sect3>
     34
     35<sect3><title>apxs</title>
     36<para><command>apxs</command>
     37is a tool for building and installing extension modules for the Apache
     38<acronym>HTTP</acronym> server.</para></sect3>
     39
     40<sect3><title>dbmmanage</title>
     41<para><command>dbmmanage</command> is used to create and update the
     42<acronym>DBM</acronym> format files used to store usernames and password 
     43for basic authentication of <acronym>HTTP</acronym>
     44users.</para></sect3>
     45
     46<sect3><title>htdigest</title>
     47<para><command>htdigest</command> is used to create and update the
     48flat-files used to store usernames, realm and password for digest
     49authentication of <acronym>HTTP</acronym> users.</para></sect3>
     50
     51<sect3><title>htpasswd</title>
     52<para><command>htpasswd</command> is used to create and update the
     53flat-files used to store usernames and password for basic authentication of
     54<acronym>HTTP</acronym> users.</para></sect3>
     55
     56<sect3><title>httpd</title>
     57<para><command>httpd</command> is the Apache <acronym>HTTP</acronym>
     58server program.</para></sect3>
     59
     60<sect3><title>logresolve</title>
     61<para><command>logresolve</command> is a post-processing program to
     62resolve IP-addresses in Apache's access logfiles.</para></sect3>
     63
     64<sect3><title>rotatelogs</title>
     65<para><command>rotatelogs</command> is a simple program for use in
     66conjunction with Apache's piped logfile feature.</para></sect3>
     67
     68</sect2>
  • content/web/apache/apache-exp.xml

    r7891efc rff3fa53  
     1<sect2>
     2<title>Command explanations</title>
     3
     4<para><command>--enable-mods-shared=all</command> : We want modules
     5to be compiled and used as Dynamic Shared Objects
     6(<acronym>DSO</acronym>s) so they can be included and excluded from the
     7server using the run-time configuration directives.
     8</para>
     9
     10</sect2>
  • content/web/apache/apache-inst.xml

    r7891efc rff3fa53  
    11<sect2>
    2 <title>Installation of Apache</title>
     2<title>Installation of <application>Apache</application></title>
    33
    44<para>For security reasons, running the server as an unpriviledged user and group is strongly encouraged.</para>
    55
    6 <screen><userinput>groupadd apache &amp;&amp;
    7 useradd -c apache -d /dev/null -g apache -s /bin/false apache</userinput></screen>
     6<screen><userinput><command>groupadd apache &amp;&amp;
     7useradd -c apache -d /dev/null -g apache -s /bin/false apache</command></userinput></screen>
    88
    9 <para>Build and install Apache by running the following commands:</para>
     9<para>Build and install <application>Apache</application> by running the following commands:</para>
    1010
    11 <screen><userinput>./configure --prefix=/usr \
    12             --sbindir=/usr/sbin \
     11<screen><userinput><command>./configure --prefix=/usr \
    1312            --libexecdir=/usr/lib/apache \
     13            --datadir=/var/www \
    1414            --sysconfdir=/etc/apache \
     15            --localstatedir=/var/www \
    1516            --includedir=/usr/include/apache \
    16             --datadir=/var/www \
    17             --localstatedir=/var/www \
    18             --logfiledir=/var/log/apache \
    19             --runtimedir=/var/run \
    20             --enable-module=all \
    21             --enable-shared=max \
    22             --disable-module=auth_db \
    23             --disable-module=auth_dbm \
    24             --server-uid=apache \
    25             --server-gid=apache &amp;&amp;
     17            --enable-mods-shared=all &amp;&amp;
    2618make &amp;&amp;
    27 make install</userinput></screen>
     19make install</command></userinput></screen>
    2820
    2921</sect2>
  • content/web/apache/apache-intro.xml

    r7891efc rff3fa53  
    11<sect2>
    2 <title>Introduction to Apache</title>
     2<title>Introduction to <application>Apache</application></title>
    33
    4 <screen>Download location (HTTP):       <ulink url="&apache-download-http;" />
    5 Download location (FTP):        <ulink url="&apache-download-ftp;" />
    6 Version used:                   &apache-version;
    7 Package size:                   &apache-size;
    8 Estimated disk space required:  &apache-buildsize;</screen>
    9 
    10 <para>The Apache package contains an open-source HTTP server.  It is
     4<para>The <application>Apache</application> package contains an
     5open-source <acronym>HTTP</acronym> server. It is
    116useful for creating local intranet web sites or running huge web serving
    127operations.</para>
    138
     9<sect3><title>Package information</title>
     10<itemizedlist spacing='compact'>
     11<listitem><para>Download (HTTP): <ulink url="&apache-download-http;"/></para></listitem>
     12<listitem><para>Download (FTP): <ulink url="&apache-download-ftp;"/></para></listitem>
     13<listitem><para>Download size: &apache-size;</para></listitem>
     14<listitem><para>Estimated Disk space required: &apache-buildsize;</para></listitem>
     15<listitem><para>Estimated build time: &apache-time;</para></listitem></itemizedlist>
     16</sect3>
     17
     18<sect3><title><application>Apache</application> dependencies</title>
     19<sect4><title>Optional</title>
     20<para><xref linkend="db"/>, <xref linkend="openssl"/>, <xref
     21linkend="openldap"/> and <xref linkend="lynx"/>
     22</para></sect4>
     23</sect3>
     24
    1425</sect2>
  • content/web/apache/apache.ent

    r7891efc rff3fa53  
    55<!ENTITY apache-config SYSTEM "apache-config.xml">
    66<!ENTITY apache-desc SYSTEM "apache-desc.xml">
    7 <!ENTITY apache-version "1.3.27">
    8 <!ENTITY apache-download-http "http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz">
    9 <!ENTITY apache-download-ftp "ftp://ftp.tux.org/pub/net/apache/dist/httpd/apache_1.3.27.tar.gz">
    10 <!ENTITY apache-size "2.2 MB">
    11 <!ENTITY apache-buildsize "13 MB">
     7<!ENTITY apache-version "2.0.47">
     8<!ENTITY apache-download-http "http://www.apache.org/dist/httpd/httpd-&apache-version;.tar.gz">
     9<!ENTITY apache-download-ftp "ftp://ftp.tux.org/pub/net/apache/dist/httpd/httpd-&apache-version;.tar.gz">
     10<!ENTITY apache-size "5.9 MB">
     11<!ENTITY apache-buildsize "95 MB">
     12<!ENTITY apache-time "1.31 SBU">
  • index.xml

    r7891efc rff3fa53  
    33                        "/usr/share/docbook/docbookx.dtd" [
    44
    5 <!ENTITY version "20030912">
    6 <!ENTITY releasedate "September 12th, 2003">
     5<!ENTITY version "20030913">
     6<!ENTITY releasedate "September 13th, 2003">
    77
    88<!ENTITY % book SYSTEM "book/book.ent">
  • introduction/welcome/changelog.xml

    r7891efc rff3fa53  
    1010
    1111<itemizedlist>
     12
     13<listitem><para>September 13th, 2003 [igor]: update to
     14Apache-2.0.47.</para></listitem>
    1215
    1316<listitem><para>September 11th, 2003 [larry]: Arranged Part
Note: See TracChangeset for help on using the changeset viewer.