]> granicus.if.org Git - apache/log
apache
26 years agoPR:
brian [Mon, 26 Jan 1998 07:02:32 +0000 (07:02 +0000)]
PR:

If SGI is going to break their links, I'm not about to go ferreting around
their site looking for where they moved it to.  Since the other entry is
generic for all OS's (or at least doesn't clearly state HOW it's related),
I've removed the SGI entry.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80011 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
brian [Mon, 26 Jan 1998 06:58:31 +0000 (06:58 +0000)]
PR:

If SCO's going to break their links, I'm not going to go searching for where they
moved it to.

Cold and rainy and dark.
ml" -->

<H1 ALIGN="CENTER">Connections in the FIN_WAIT_2 state and Apache</H1>
<OL>
<LI><H2>What is the FIN_WAIT_2 state?</H2>
Starting with the Apache 1.2 betas, people are reporting many more
connections in the FIN_WAIT_2 state (as reported by
<code>netstat</code>) than they saw using older versions.  When the
server closes a TCP connection, it sends a packet with the FIN bit
sent to the client, which then responds with a packet with the ACK bit
set.  The client then sends a packet with the FIN bit set to the
server, which responds with an ACK and the connection is closed.  The
state that the connection is in during the period between when the
server gets the ACK from the client and the server gets the FIN from
the client is known as FIN_WAIT_2.  See the <A
HREF="ftp://ds.internic.net/rfc/rfc793.txt">TCP RFC</A> for the
technical details of the state transitions.<P>

The FIN_WAIT_2 state is somewhat unusual in that there is no timeout
defined in the standard for it.  This means that on many operating
systems, a connection in the FIN_WAIT_2 state will stay around until
the system is rebooted.  If the system does not have a timeout and
too many FIN_WAIT_2 connections build up, it can fill up the space
allocated for storing information about the connections and crash
the kernel.  The connections in FIN_WAIT_2 do not tie up an httpd
process.<P>

<LI><H2>But why does it happen?</H2>

There are numerous reasons for it happening, some of them may not
yet be fully clear.  What is known follows.<P>

<H3>Buggy clients and persistent connections</H3>

Several clients have a bug which pops up when dealing with
<A HREF="../keepalive.html">persistent connections</A> (aka keepalives).
When the connection is idle and the server closes the connection
(based on the <A HREF="../mod/core.html#keepalivetimeout">
KeepAliveTimeout</A>), the client is programmed so that the client does
not send back a FIN and ACK to the server.  This means that the
connection stays in the FIN_WAIT_2 state until one of the following
happens:<P>
<UL>
        <LI>The client opens a new connection to the same or a different
            site, which causes it to fully close the older connection on
            that socket.
        <LI>The user exits the client, which on some (most?) clients
            causes the OS to fully shutdown the connection.
        <LI>The FIN_WAIT_2 times out, on servers that have a timeout
            for this state.
</UL><P>
If you are lucky, this means that the buggy client will fully close the
connection and release the resources on your server.  However, there
are some cases where the socket is never fully closed, such as a dialup
client disconnecting from their provider before closing the client.
In addition, a client might sit idle for days without making another
connection, and thus may hold its end of the socket open for days
even though it has no further use for it.
<STRONG>This is a bug in the browser or in its operating system's
TCP implementation.</STRONG>  <P>

The clients on which this problem has been verified to exist:<P>
<UL>
        <LI>Mozilla/3.01 (X11; I; FreeBSD 2.1.5-RELEASE i386)
        <LI>Mozilla/2.02 (X11; I; FreeBSD 2.1.5-RELEASE i386)
        <LI>Mozilla/3.01Gold (X11; I; SunOS 5.5 sun4m)
        <LI>MSIE 3.01 on the Macintosh
        <LI>MSIE 3.01 on Windows 95
</UL><P>

This does not appear to be a problem on:
<UL>
        <LI>Mozilla/3.01 (Win95; I)
</UL>
<P>

It is expected that many other clients have the same problem. What a
client <STRONG>should do</STRONG> is periodically check its open
socket(s) to see if they have been closed by the server, and close their
side of the connection if the server has closed.  This check need /export/home/cvs/CVSROOT/cvsedit

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80009 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
brian [Mon, 26 Jan 1998 06:39:36 +0000 (06:39 +0000)]
PR:

Make all references complete.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80006 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
brian [Mon, 26 Jan 1998 06:37:12 +0000 (06:37 +0000)]
PR:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80004 13f79535-47bb-0310-9956-ffa450edef68

26 years ago- no need to use stat() since r->finfo is already what we need
dgaudet [Sun, 25 Jan 1998 03:52:19 +0000 (03:52 +0000)]
- no need to use stat() since r->finfo is already what we need
- no need to play with atime/mtime crud, the web server doesn't preserve
    that info normally anyhow
- deal with r->finfo.st_mode == 0 || !r->filename (i.e. not a disk file)
- don't reference mime_module.type_checker, this should be controlled by
    the ordering within Configuration
- work properly with multiple vhosts
- doc update: even prior to this patch, the code was disabled if there
    was no MimeMagicFile directive.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79997 13f79535-47bb-0310-9956-ffa450edef68

26 years ago mod_auth_msql isn't part of the distribution any more, so take
Ken Coar [Fri, 23 Jan 1998 16:13:57 +0000 (16:13 +0000)]
mod_auth_msql isn't part of the distribution any more, so take
out all references to it that assume it is.  Plus some miscellaneous
HTML cleanup.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79972 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
Jim Jagielski [Fri, 23 Jan 1998 00:36:34 +0000 (00:36 +0000)]
PR:
Obtained from:
Submitted by: Jim Jagielski
Reviewed by:
Best of both worlds... Let the world know if we have mmap and/or
shmget as well as controlling which to use for scoreboard. This
should be a complete patch, so if any docs were skipped, feel free
to update 'em

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79969 13f79535-47bb-0310-9956-ffa450edef68

26 years agoSupport users with older versions of the server.
dgaudet [Thu, 22 Jan 1998 23:18:58 +0000 (23:18 +0000)]
Support users with older versions of the server.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79962 13f79535-47bb-0310-9956-ffa450edef68

26 years agoSubmitted by: Jim Jagielski
Jim Jagielski [Thu, 22 Jan 1998 23:11:51 +0000 (23:11 +0000)]
Submitted by: Jim Jagielski

Do make the code a bit clearer, some minor #define changes (and
the resultant flow-thru in the docs).

   SAFE_UNSERIALIZED_ACCEPT  ->   SINGLE_LISTEN_UNSERIALIZED_ACCEPT
   HAVE_MMAP                 ->   USE_MMAP_SCOREBOARD
   HAVE_SHMGET               ->   USE_SHMGET_SCOREBOARD

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79959 13f79535-47bb-0310-9956-ffa450edef68

26 years agoyay netscape has fixed a bug
dgaudet [Thu, 22 Jan 1998 21:09:42 +0000 (21:09 +0000)]
yay netscape has fixed a bug

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79957 13f79535-47bb-0310-9956-ffa450edef68

26 years agodocument no-content-length and gif89-expires
dgaudet [Thu, 22 Jan 1998 20:37:48 +0000 (20:37 +0000)]
document no-content-length and gif89-expires

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79954 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
brian [Tue, 20 Jan 1998 18:32:55 +0000 (18:32 +0000)]
PR:

First stab at updating.  Other windows developers need to make sure this
still makes sense!  Notably, does the line break problem mean that the .tar.gz
distribution can't be compiled on NT?

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79923 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Update the copyright year of all the various HEAD files to
Ken Coar [Wed, 7 Jan 1998 16:45:54 +0000 (16:45 +0000)]
Update the copyright year of all the various HEAD files to
include 1998.

Reviewed by: Jim Jagielski, Martin Kraemer

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79842 13f79535-47bb-0310-9956-ffa450edef68

26 years agoMisc spelling fixes.
Marc Slemko [Mon, 29 Dec 1997 20:41:55 +0000 (20:41 +0000)]
Misc spelling fixes.

PR: 1600
Obtained from:
Submitted by:  "Daniel S.Lewart" <d-lewart@uiuc.edu>
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79798 13f79535-47bb-0310-9956-ffa450edef68

26 years agoMisc cleanups:
Marc Slemko [Mon, 22 Dec 1997 21:25:10 +0000 (21:25 +0000)]
Misc cleanups:
- cleanup HTML, <e> --> <em>
- remove bogus security warning about LockFile
- add warning about possible denial of service attack with
  LockFile in world writable directory
- remove security encouragement to use inetd; add warning that
  inetd isn't well supported.

PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79758 13f79535-47bb-0310-9956-ffa450edef68

26 years agoTweak the 257th byte bug... happens at the 256th byte as well.
dgaudet [Sun, 21 Dec 1997 08:18:13 +0000 (08:18 +0000)]
Tweak the 257th byte bug... happens at the 256th byte as well.

Reviewed by: Jim Jagielski, Brian Behlendorf

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79754 13f79535-47bb-0310-9956-ffa450edef68

26 years agoLars says:
dgaudet [Sat, 20 Dec 1997 20:42:29 +0000 (20:42 +0000)]
Lars says:

some people are confused if they see the different naming conventions
for language negotiated documents (e.g. foo.html.en vs. foo.en.html)
and how a hyperlink to such a document should look like.
There's a PR about it (#1559) and I've seen several questions on
usenet about it.

I tried to clarify this issue in an extra paragraph in the
content-negotiation.html document (see attachment).

PR: 1559
Submitted by: Lars Eilebrecht
Reviewed by: Dean Gaudet

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79735 13f79535-47bb-0310-9956-ffa450edef68

26 years agoAdd link to Solaris TCP param. tuning page.
Marc Slemko [Thu, 18 Dec 1997 01:52:19 +0000 (01:52 +0000)]
Add link to Solaris TCP param. tuning page.

PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79718 13f79535-47bb-0310-9956-ffa450edef68

26 years agoIn several htdocs/manual pages, the TransferLog directive is still
Martin Kraemer [Tue, 16 Dec 1997 22:28:39 +0000 (22:28 +0000)]
In several htdocs/manual pages, the TransferLog directive is still
attributed to the mod_log_common module (which is no longer
supported as of apache_1.2).

The patch replaces these references with references to
mod_log_config. Note that I still left the mod_log_common.html file
(and a back compatibility reference to it) in the docs distribution.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79715 13f79535-47bb-0310-9956-ffa450edef68

26 years agoThe mod_proxy module proxy_ftp.c has an undocumented 'feature':
Martin Kraemer [Tue, 16 Dec 1997 22:07:33 +0000 (22:07 +0000)]
The mod_proxy module proxy_ftp.c has an undocumented 'feature':
when the URL is suffixed by ';type=a', then an ASCII transfer is enforced.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79712 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Correct some misstatements about the Auth*File directives;
Ken Coar [Tue, 16 Dec 1997 20:57:38 +0000 (20:57 +0000)]
Correct some misstatements about the Auth*File directives;
they're ServerRoot-relative if not absolute.

PR: 1511

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79709 13f79535-47bb-0310-9956-ffa450edef68

26 years agoChange to URL to the mod_rewrite practical solutions, because
Ralf S. Engelschall [Tue, 16 Dec 1997 16:52:19 +0000 (16:52 +0000)]
Change to URL to the mod_rewrite practical solutions, because
the software area now really gets removed, but at least the
solutions survive in my paperwork area where they make up a
new document.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79707 13f79535-47bb-0310-9956-ffa450edef68

26 years agoCorrect two incorrect examples. Describe what each example does.
dgaudet [Sun, 14 Dec 1997 01:15:43 +0000 (01:15 +0000)]
Correct two incorrect examples.  Describe what each example does.

PR: 1544
Submitted by: Dan Astoorian <djast@cs.toronto.edu>
Reviewed by: Dean Gaudet

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79694 13f79535-47bb-0310-9956-ffa450edef68

26 years agoNote that the CIDR syntaxes are for 1.3 and later.
dgaudet [Sun, 14 Dec 1997 01:07:37 +0000 (01:07 +0000)]
Note that the CIDR syntaxes are for 1.3 and later.

PR: 1534

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79692 13f79535-47bb-0310-9956-ffa450edef68

26 years agoThe port documentation was a little unclear on its overlap with the Listen
dgaudet [Sun, 14 Dec 1997 01:04:56 +0000 (01:04 +0000)]
The port documentation was a little unclear on its overlap with the Listen
directive.

PR: 975

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79690 13f79535-47bb-0310-9956-ffa450edef68

26 years agoMore tweaks related to serverroot/logs/etc.
dgaudet [Sun, 14 Dec 1997 00:57:46 +0000 (00:57 +0000)]
More tweaks related to serverroot/logs/etc.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79688 13f79535-47bb-0310-9956-ffa450edef68

26 years agoWe talk about a "proper installation" occasionally... and assume folks know
dgaudet [Sun, 14 Dec 1997 00:49:19 +0000 (00:49 +0000)]
We talk about a "proper installation" occasionally... and assume folks know
how to set the perms on the serverroot.  But I don't think we document it
anywhere.  Nowhere that's easily found direct from the "how to install"
page.  Document it better, link to it.  Remove the install_1_1 docs.
Update a 1.2 reference to 1.3.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79686 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Correct missing keyword on ScriptAliasMatch example.
Ken Coar [Sun, 7 Dec 1997 23:03:45 +0000 (23:03 +0000)]
Correct missing keyword on ScriptAliasMatch example.

PR: 1512
Submitted by: Ronnie Brunner <brunner@netcetera.ch>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79677 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Recommend removal of <Limit> containers rather than adding
Ken Coar [Tue, 2 Dec 1997 04:45:55 +0000 (04:45 +0000)]
Recommend removal of <Limit> containers rather than adding
methods to them.

Submitted by: Marc Slemko

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79667 13f79535-47bb-0310-9956-ffa450edef68

26 years agoDoc contains an example of an .asis redirection which is a clear candidate
pcs [Mon, 1 Dec 1997 14:41:14 +0000 (14:41 +0000)]
Doc contains an example of an .asis redirection which is a clear candidate
for 301 permanent redirect, not 302 temporary redirect.
PR: 1485
Submitted by: Carl von Loesch <lynx@net.pages.de>, Lars Eilebrecht

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79662 13f79535-47bb-0310-9956-ffa450edef68

26 years agoFix the default Apache path
pcs [Tue, 25 Nov 1997 09:47:47 +0000 (09:47 +0000)]
Fix the default Apache path

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79644 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
pcs [Tue, 25 Nov 1997 09:41:46 +0000 (09:41 +0000)]
PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79642 13f79535-47bb-0310-9956-ffa450edef68

26 years agoClean up check_cmd_context stuff. Fix core documentation for a few
dgaudet [Sat, 15 Nov 1997 00:16:48 +0000 (00:16 +0000)]
Clean up check_cmd_context stuff.  Fix core documentation for a few
directives.

Reviewed by: Jim Jagielski, Ken Coar, Martin Kraemer

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79606 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Include directive isn't a container..
Ken Coar [Fri, 14 Nov 1997 04:02:44 +0000 (04:02 +0000)]
Include directive isn't a container..

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79601 13f79535-47bb-0310-9956-ffa450edef68

26 years agoLanguage tweaks. Expand on the common reason why you would want to run
dgaudet [Wed, 12 Nov 1997 21:11:59 +0000 (21:11 +0000)]
Language tweaks.  Expand on the common reason why you would want to run
multiple daemons.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79587 13f79535-47bb-0310-9956-ffa450edef68

26 years agoaddition
dgaudet [Wed, 12 Nov 1997 20:54:22 +0000 (20:54 +0000)]
addition

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79585 13f79535-47bb-0310-9956-ffa450edef68

26 years agoCorrect Typos;
Martin Kraemer [Wed, 12 Nov 1997 16:29:46 +0000 (16:29 +0000)]
Correct Typos;

Add new -V switch;
add paragraph about new ServerRoot=/usr/local/apache;

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79582 13f79535-47bb-0310-9956-ffa450edef68

26 years agoSorry, I added the wrong header/footer files
Martin Kraemer [Wed, 12 Nov 1997 13:54:26 +0000 (13:54 +0000)]
Sorry, I added the wrong header/footer files

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79580 13f79535-47bb-0310-9956-ffa450edef68

26 years agoSorry, I added the wrong header/footer files
Martin Kraemer [Wed, 12 Nov 1997 13:53:15 +0000 (13:53 +0000)]
Sorry, I added the wrong header/footer files

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79578 13f79535-47bb-0310-9956-ffa450edef68

26 years agoCiting Lars:
Martin Kraemer [Wed, 12 Nov 1997 13:37:54 +0000 (13:37 +0000)]
Citing Lars:
Hi,

the attachment includes a reworked Apache manual with the
new virtual host documentation.

As Dean suggested I created a new directory named 'vhosts' and moved the
updated vhosts-in-depth etc. documents into the new directory, renamed
them and updated all other documents which refered to the old docs
(at least I tried to find all documents...).

Submitted by: Lars Eilebrecht <sfx@unix-ag.org>
Reviewed by:     Martin Kraemer

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79576 13f79535-47bb-0310-9956-ffa450edef68

26 years agoCiting Lars:
Martin Kraemer [Tue, 11 Nov 1997 23:47:21 +0000 (23:47 +0000)]
Citing Lars:
Hi,

the attachment includes a reworked Apache manual with the
new virtual host documentation.

As Dean suggested I created a new directory named 'vhosts' and moved the
updated vhosts-in-depth etc. documents into the new directory, renamed
them and updated all other documents which refered to the old docs
(at least I tried to find all documents...).

Submitted by: Lars Eilebrecht <sfx@unix-ag.org>
Reviewed by:  Martin Kraemer

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79568 13f79535-47bb-0310-9956-ffa450edef68

26 years agoMinor Documentation Update: broken and mis-typed links, and a reference to
Martin Kraemer [Tue, 11 Nov 1997 23:11:11 +0000 (23:11 +0000)]
Minor Documentation Update: broken and mis-typed links, and a reference to
a resource which is available only at http://www.apache.org/, not in the
user's tree.
Reviewed by:Dean Gaudet, Jim Jagielski, Ken Coar

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79566 13f79535-47bb-0310-9956-ffa450edef68

26 years agoClarify use of textual strings for expiry times.
Marc Slemko [Tue, 11 Nov 1997 22:47:40 +0000 (22:47 +0000)]
Clarify use of textual strings for expiry times.

PR: 1397
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79562 13f79535-47bb-0310-9956-ffa450edef68

26 years agoClose them CODE elements
Roy T. Fielding [Tue, 11 Nov 1997 21:58:15 +0000 (21:58 +0000)]
Close them CODE elements

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79557 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Add documentation for alternate mod_expires time syntax.
Ken Coar [Tue, 11 Nov 1997 21:35:08 +0000 (21:35 +0000)]
Add documentation for alternate mod_expires time syntax.

PR: 1238

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79555 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Add a "SuppressColumnSorting" option to the IndexOptions list,
Ken Coar [Sun, 9 Nov 1997 05:49:23 +0000 (05:49 +0000)]
Add a "SuppressColumnSorting" option to the IndexOptions list,
which will keep the column heading from beling links for sorting
the display.

PR: 1261
Reviewed by: Jim Jagielski, Martin Kraemer, Dean Gaudet

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79543 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
brian [Sat, 8 Nov 1997 23:27:59 +0000 (23:27 +0000)]
PR:

Added references to the known_client_problems page.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79538 13f79535-47bb-0310-9956-ffa450edef68

26 years ago1.3 now exists. That means this slips even further.
Marc Slemko [Thu, 6 Nov 1997 14:52:47 +0000 (14:52 +0000)]
1.3 now exists.  That means this slips even further.
PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79520 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
brian [Thu, 6 Nov 1997 02:55:08 +0000 (02:55 +0000)]
PR:

Added notes about HP

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79514 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Label the 1.3 documentation as being such in the header and footer.
Ken Coar [Tue, 4 Nov 1997 01:18:00 +0000 (01:18 +0000)]
Label the 1.3 documentation as being such in the header and footer.
Hopefully (!) this will ease some of the confusion about 1.3
features described therein that people think apply to 1.2..

Reviewed by: Dean Gaudet

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79503 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
brian [Mon, 3 Nov 1997 23:34:05 +0000 (23:34 +0000)]
PR:

Remove broken link, improve context of existing one

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79501 13f79535-47bb-0310-9956-ffa450edef68

26 years agoExpand on nph- script section; use words "server push" and mention
Marc Slemko [Sat, 1 Nov 1997 04:45:51 +0000 (04:45 +0000)]
Expand on nph- script section; use words "server push" and mention
unbuffering in 1.3.

PR: 1316
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79491 13f79535-47bb-0310-9956-ffa450edef68

26 years agoDocument that we don't support the referer directive.
Marc Slemko [Sat, 1 Nov 1997 04:22:53 +0000 (04:22 +0000)]
Document that we don't support the referer directive.

PR: 968
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79489 13f79535-47bb-0310-9956-ffa450edef68

26 years agoDocument that "RewriteEngine on" is _not_ inherited by vhosts,
Marc Slemko [Sat, 1 Nov 1997 03:58:32 +0000 (03:58 +0000)]
Document that "RewriteEngine on" is _not_ inherited by vhosts,
unlike many other directives.

PR: 570
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79487 13f79535-47bb-0310-9956-ffa450edef68

26 years agoSet default pathnames -everywhere- to /usr/local/apache
Sameer Parekh [Sat, 25 Oct 1997 22:35:13 +0000 (22:35 +0000)]
Set default pathnames -everywhere- to /usr/local/apache

PR:
Obtained from:
Submitted by: Sameer Parekh
Reviewed by: Jim, Martin

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79464 13f79535-47bb-0310-9956-ffa450edef68

26 years agotypo
dgaudet [Sat, 25 Oct 1997 05:35:43 +0000 (05:35 +0000)]
typo

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79459 13f79535-47bb-0310-9956-ffa450edef68

26 years agodocument MMAP_SEGMENT_SIZE
dgaudet [Fri, 24 Oct 1997 09:39:17 +0000 (09:39 +0000)]
document MMAP_SEGMENT_SIZE

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79451 13f79535-47bb-0310-9956-ffa450edef68

26 years agoDocument mod_unique_id.html.
dgaudet [Fri, 24 Oct 1997 09:34:21 +0000 (09:34 +0000)]
Document mod_unique_id.html.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79449 13f79535-47bb-0310-9956-ffa450edef68

26 years agoBring windows.html doc up-to-date for 1.3b2
pcs [Tue, 21 Oct 1997 13:19:09 +0000 (13:19 +0000)]
Bring windows.html doc up-to-date for 1.3b2

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79427 13f79535-47bb-0310-9956-ffa450edef68

26 years ago {Sigh} Add the suddenly FAQ about why virtual hosts don't
Ken Coar [Tue, 21 Oct 1997 01:10:27 +0000 (01:10 +0000)]
{Sigh}  Add the suddenly FAQ about why virtual hosts don't
work after 1.3b2 upgrades..

PR: Too many to mention

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79420 13f79535-47bb-0310-9956-ffa450edef68

26 years agoAdd note about \space not working in Apache
pcs [Fri, 17 Oct 1997 11:39:59 +0000 (11:39 +0000)]
Add note about \space not working in Apache

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79394 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPut the Email address of who to contact
Jim Jagielski [Wed, 15 Oct 1997 20:22:48 +0000 (20:22 +0000)]
Put the Email address of who to contact

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79379 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Clean up some typos in the proxy documentation, and add a
Ken Coar [Wed, 15 Oct 1997 14:45:25 +0000 (14:45 +0000)]
Clean up some typos in the proxy documentation, and add a
dictionary for the directive attributes (status, override,
et cetera) - part of the directive-documentation-normalisation
effort, and something I've wanted for a long time.  Updated the
mod_example page to use the links to the dictionary (as an example ;-).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79376 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
brian [Mon, 13 Oct 1997 21:11:59 +0000 (21:11 +0000)]
PR:

Link to known_client_problems, add '.' to the end of sentences.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79368 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPut <Limit> into its correct alphabetical position.
pcs [Fri, 10 Oct 1997 09:13:09 +0000 (09:13 +0000)]
Put <Limit> into its correct alphabetical position.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79362 13f79535-47bb-0310-9956-ffa450edef68

26 years agoDocument valid method names in <Limit> statements. Mention that
pcs [Fri, 10 Oct 1997 09:08:40 +0000 (09:08 +0000)]
Document valid method names in <Limit> statements. Mention that
GET also restricts HEAD requests (see PR#1196).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79360 13f79535-47bb-0310-9956-ffa450edef68

26 years agoupdate from Lars
dgaudet [Sat, 4 Oct 1997 18:43:28 +0000 (18:43 +0000)]
update from Lars

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79323 13f79535-47bb-0310-9956-ffa450edef68

26 years agoIncorporate my performance tuning document. Document a lot more stuff
dgaudet [Tue, 30 Sep 1997 23:24:30 +0000 (23:24 +0000)]
Incorporate my performance tuning document.  Document a lot more stuff
that changed.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79314 13f79535-47bb-0310-9956-ffa450edef68

26 years agoMake the documentation on the Limit directive shout a little louder
Marc Slemko [Wed, 24 Sep 1997 23:46:40 +0000 (23:46 +0000)]
Make the documentation on the Limit directive shout a little louder
about not using it unless you really do only want to limit specific
methods.
PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79299 13f79535-47bb-0310-9956-ffa450edef68

26 years ago Add a FAQ about Y2K compliance.
Ken Coar [Thu, 18 Sep 1997 13:00:15 +0000 (13:00 +0000)]
Add a FAQ about Y2K compliance.

Submitted by: Lars Eilebrecht <Lars.Eilebrecht@unix-ag.org>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79284 13f79535-47bb-0310-9956-ffa450edef68

26 years agoPR:
brian [Wed, 17 Sep 1997 16:32:21 +0000 (16:32 +0000)]
PR:

Update link.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79277 13f79535-47bb-0310-9956-ffa450edef68

26 years ago|From Martin.Kraemer@mch.sni.de Mon Sep 15 21:04:46 1997
dgaudet [Tue, 16 Sep 1997 04:06:03 +0000 (04:06 +0000)]
|From Martin.Kraemer@mch.sni.de Mon Sep 15 21:04:46 1997
|Date: Fri, 5 Sep 1997 14:22:32 +0200 (MET DST)
|From: Martin Kraemer <Martin.Kraemer@mch.sni.de>
|Reply-To: new-httpd@apache.org
|To: Apache Mailing List <new-httpd@apache.org>
|Subject: [DOC] mod_auth_anon.html corrections
|
|The mod_auth_anon.html documentation describes the default of
|the Anonymous_LogEmail and Anonymous_MustGiveEmail being "off", but in
|the code, the default seems to be "on".
|
|The "Example" section could be improved because when used as-is, the
|server returns a [500] server error (configuration error:  couldn't check
|user.  No user file?). I added a comment to clarify things.

Submitted by: Martin Kraemer
Reviewed by: Dean Gaudet

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79267 13f79535-47bb-0310-9956-ffa450edef68

27 years ago Changes to mod_log_config to allow naming of format strings.
Ken Coar [Fri, 12 Sep 1997 14:50:47 +0000 (14:50 +0000)]
Changes to mod_log_config to allow naming of format strings.
Format nicknames are defined with "LogFormat fmt nickname", and can
be used with "LogFormat nickname" and "CustomLog logtarget nickname".

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79202 13f79535-47bb-0310-9956-ffa450edef68

27 years agoAdd CheckSpelling to list of directives
pcs [Fri, 12 Sep 1997 09:38:03 +0000 (09:38 +0000)]
Add CheckSpelling to list of directives

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79198 13f79535-47bb-0310-9956-ffa450edef68

27 years agoAdd mod_speling to the list of distributed modules
pcs [Fri, 12 Sep 1997 09:36:18 +0000 (09:36 +0000)]
Add mod_speling to the list of distributed modules

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79196 13f79535-47bb-0310-9956-ffa450edef68

27 years agoAdd in mod_speling.
dgaudet [Thu, 11 Sep 1997 18:50:30 +0000 (18:50 +0000)]
Add in mod_speling.

PR:
Submitted by: Martin Kraemer, Alexei Kosut
Reviewed by: various

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79181 13f79535-47bb-0310-9956-ffa450edef68

27 years agoAdd link to mod_setenvif docs. Add placeholder for mod_unique_id. Put
pcs [Thu, 11 Sep 1997 13:59:30 +0000 (13:59 +0000)]
Add link to mod_setenvif docs. Add placeholder for mod_unique_id. Put
proxy & rewrite into alphabetic order. Note the modules which are not longer
part of Apache 1.3 (mod_browser, mod_auth_msql).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79178 13f79535-47bb-0310-9956-ffa450edef68

27 years agoChange Module line examples into AddModule to reflect the new Configure
pcs [Thu, 11 Sep 1997 13:27:52 +0000 (13:27 +0000)]
Change Module line examples into AddModule to reflect the new Configure
syntax

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79176 13f79535-47bb-0310-9956-ffa450edef68

27 years ago Strongly note that the standalone FancyIndexing and IndexOptions
Ken Coar [Tue, 9 Sep 1997 15:19:48 +0000 (15:19 +0000)]
Strongly note that the standalone FancyIndexing and IndexOptions
directives override each other.

PR: 1106

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79166 13f79535-47bb-0310-9956-ffa450edef68

27 years agoUpdate the fin_wait_2 page to reflect the current understanding
Marc Slemko [Sun, 7 Sep 1997 03:10:58 +0000 (03:10 +0000)]
Update the fin_wait_2 page to reflect the current understanding
of the issues; remove the suggestion that Apache is buggy, since
no bugs have been found in that code.  It now appears most likely
that it is just the result of a bad interaction.  The real solution,
as always, is still a timeout for FIN_WAIT_2.

PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79161 13f79535-47bb-0310-9956-ffa450edef68

27 years agoPR:
brian [Thu, 28 Aug 1997 18:12:34 +0000 (18:12 +0000)]
PR:

Updated Solaris performance link.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79102 13f79535-47bb-0310-9956-ffa450edef68

27 years ago The long-awaited doc update for the conditional SSI enhancements
Ken Coar [Thu, 28 Aug 1997 15:24:07 +0000 (15:24 +0000)]
The long-awaited doc update for the conditional SSI enhancements
(including some HTML cleanup), and some additional items for the
new-for-1.3 page.

PR: 41

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79100 13f79535-47bb-0310-9956-ffa450edef68

27 years ago Update the list of directives for BrowserMatch*'s new location,
Ken Coar [Tue, 26 Aug 1997 16:49:51 +0000 (16:49 +0000)]
Update the list of directives for BrowserMatch*'s new location,
add the SetEnvIf* directives, and apply Lars' fix to mod_mime.

Submitted by: Lars Eilebrecht <Lars.Eilebrecht@unix-ag.org>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79090 13f79535-47bb-0310-9956-ffa450edef68

27 years ago Ta-daah! The documentation for mod_setenvif, which defines the
Ken Coar [Tue, 26 Aug 1997 16:43:12 +0000 (16:43 +0000)]
Ta-daah!  The documentation for mod_setenvif, which defines the
SetEnvIf* and BrowserMatch* directives.  (And in time for 1.3b1, too)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79088 13f79535-47bb-0310-9956-ffa450edef68

27 years agoPR: #1010
brian [Tue, 26 Aug 1997 02:10:49 +0000 (02:10 +0000)]
PR: #1010
Submitted by: Lars Eilebrecht <Lars.Eilebrecht@unix-ag.org>
Reviewed by: Brian Behlendorf, with a little surgery

Suggested added text to clear up confusing situation.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79086 13f79535-47bb-0310-9956-ffa450edef68

27 years agoPR:
brian [Tue, 26 Aug 1997 02:07:20 +0000 (02:07 +0000)]
PR:
Submitted by: Martin Kraemer <Martin.Kraemer@mch.sni.de>
Reviewed by: Brian Behlendorf

Fix a few inconsistancies.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79084 13f79535-47bb-0310-9956-ffa450edef68

27 years agoPR:
brian [Tue, 26 Aug 1997 01:51:32 +0000 (01:51 +0000)]
PR:

Document the type of responses which contain content-md5.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79082 13f79535-47bb-0310-9956-ffa450edef68

27 years agoPR:
brian [Tue, 26 Aug 1997 01:20:35 +0000 (01:20 +0000)]
PR:
Submitted by: Lars Eilebrecht <Lars.Eilebrecht@unix-ag.org>
Reviewed by: Brian Behlendorf

Document ContentDigest.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79080 13f79535-47bb-0310-9956-ffa450edef68

27 years agoPR:
brian [Mon, 25 Aug 1997 19:26:03 +0000 (19:26 +0000)]
PR:
Submitted by: Martin Kraemer <Martin.Kraemer@mch.sni.de>

Directive had been moved.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79074 13f79535-47bb-0310-9956-ffa450edef68

27 years ago Update FAQ #35 (where's the dump?) to mention the new-for-1.3
Ken Coar [Mon, 25 Aug 1997 16:13:15 +0000 (16:13 +0000)]
Update FAQ #35 (where's the dump?) to mention the new-for-1.3
CoreDumpDirectory directive.

Submitted by: Lars Eilebrecht <Lars.Eilebrecht@unix-ag.org>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79071 13f79535-47bb-0310-9956-ffa450edef68

27 years agoAdd document explaining how Directory, Location and Files sections
pcs [Sun, 24 Aug 1997 14:16:04 +0000 (14:16 +0000)]
Add document explaining how Directory, Location and Files sections
are merged. Based on Dean's explanation from PR#586. Link to this
doc from the directive descriptions in core.html.

PR: 586

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79051 13f79535-47bb-0310-9956-ffa450edef68

27 years agoAttempt to clarify relationship between VirtualHost and
pcs [Sun, 24 Aug 1997 13:17:56 +0000 (13:17 +0000)]
Attempt to clarify relationship between VirtualHost and
Listen/BindAddress/Port.

PR: 1046

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79049 13f79535-47bb-0310-9956-ffa450edef68

27 years agoUpdate sample output from Configure to something more like what it
pcs [Sun, 24 Aug 1997 12:55:09 +0000 (12:55 +0000)]
Update sample output from Configure to something more like what it
generates now.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79045 13f79535-47bb-0310-9956-ffa450edef68

27 years agoUpdate docs to reflect changes to mod_cern_meta
Randy Terbush [Sat, 23 Aug 1997 18:42:07 +0000 (18:42 +0000)]
Update docs to reflect changes to mod_cern_meta

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79035 13f79535-47bb-0310-9956-ffa450edef68

27 years agoAdd warning about NT.
dgaudet [Sat, 23 Aug 1997 04:47:24 +0000 (04:47 +0000)]
Add warning about NT.

Reviewed by: Brian Behlendorf, Randy Terbush, Paul Sutton

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79022 13f79535-47bb-0310-9956-ffa450edef68

27 years agoDocument 'Include'
Randy Terbush [Sat, 23 Aug 1997 03:10:54 +0000 (03:10 +0000)]
Document 'Include'

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79016 13f79535-47bb-0310-9956-ffa450edef68

27 years agoFix Squent typo.
Marc Slemko [Sun, 17 Aug 1997 05:55:54 +0000 (05:55 +0000)]
Fix Squent typo.
PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78975 13f79535-47bb-0310-9956-ffa450edef68

27 years ago Some typos and other cleanup from Martin the doc-walloper.
Ken Coar [Thu, 14 Aug 1997 01:24:49 +0000 (01:24 +0000)]
Some typos and other cleanup from Martin the doc-walloper.
(.htaccess changes reverted to generic htaccess after some
discussion.)

Submitted by: Martin Kraemer <Martin.Kraemer@mch.sni.de>
Reviewed by: Paul Sutton, Marc Slemko, Ken Coar

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78963 13f79535-47bb-0310-9956-ffa450edef68

27 years agoInitial documentation for the new Configure
pcs [Mon, 11 Aug 1997 10:04:43 +0000 (10:04 +0000)]
Initial documentation for the new Configure

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78950 13f79535-47bb-0310-9956-ffa450edef68

27 years agoPR:
brian [Fri, 8 Aug 1997 17:24:44 +0000 (17:24 +0000)]
PR:

Typo.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78926 13f79535-47bb-0310-9956-ffa450edef68