- Mar 20, 1998
-
-
Ralf S. Engelschall authored
PR#: 1963 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80604 13f79535-47bb-0310-9956-ffa450edef68
-
Ralf S. Engelschall authored
and where to find that version on the net. PR#: 1423 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80602 13f79535-47bb-0310-9956-ffa450edef68
-
Ralf S. Engelschall authored
ProxyReceiveBufferSize Submitted by: Ralf S. Engelschall PR#: 1348 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80598 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 15, 1998
-
-
dgaudet authored
SetEnvIfNoCase properly; and it used strcmp() to compare header names when it should use strcasecmp(). - Change the merging optimization so that it only considers the most recent setenvif for merging. This means that mod_setenvif will consider all directives in the order they appear in the config file. - Document that mod_setenvif considers directives in the order they appear, and give an example use. - Perform more comparisons at compile-time in order to speed up things at compile-time. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80545 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 13, 1998
-
-
Marc Slemko authored
the global one, 1.3 whines. PR: 1935 Obtained from: Submitted by: Randy Moore <ramoore@atlantech.net> Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80512 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 10, 1998
-
-
Ralf S. Engelschall authored
Cleanup of the HTML markup code (Thanks to Marc and Martin for hints) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80466 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 06, 1998
-
-
dgaudet authored
with AliasMatch and RewriteRule. This was discussed in nh.9711, search for subject "mod_rewrite/1440". My proposed change had the support of Roy, Ken and Dirk... I modified it slightly here so that it wouldn't break every single existing config that has <Location /server-status>. PR: 1440 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80426 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 04, 1998
-
-
Ralf S. Engelschall authored
Adding of new information. Now especially the detailed information about how mod_rewrite internally works which is written down here for better understanding of the directive documentation. I've also painted two initial figures to illustrate this better which are added to htdocs/manual/images/. (Phase 2 will be error correction and markup code cleanup) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80404 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
there some reason this one is still around? I'm ditching it anyhow unless someone explains why it's necessary. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80383 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 03, 1998
-
-
dgaudet authored
PR: 1908 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80372 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80369 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
wasting resources trying to solve what may end up being bugs in solaris. PR: 1779, 1854, 1904 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80364 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 28, 1998
-
-
Ralf S. Engelschall authored
adapted patch against 1.3 of Todd Eigenschink <eigenstr@mixi.net>'s original patch for 1.2.5. For 1.2.5 we don't want it because its a feature. I also added corresponding entries to the CHANGES and mod_log_config.html file. Submitted by: Todd Eigenschink <eigenstr@mixi.net> Reviewed by: Ralf S. Engelschall git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80340 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 26, 1998
-
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80322 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 25, 1998
-
-
Ralf S. Engelschall authored
constructs, thus no one noticed that it can be used to lookup the REMOTE_USER variable (one of the mod_rewrite FAQs) even in per-server context. One just has to use %{LA-U:REMOTE_USER} instead of %{REMOTE_USER} there. Notice that %{REMOTE_USER} is also useful, but only for per-dir context. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80320 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 24, 1998
-
-
Ralf S. Engelschall authored
Unix derivates who doesn't accept the locking of pipes directly. But we perhaps have another problem: According to FreeBSD's manpage and a hint by the submitter of PR#1029 flock() has to be used on opened filedescriptors which are _not_ duplicated via fork(). This currently is not the case... Submitted by: Ralf S. Engelschall Reviewed by: Ralf S. Engelschall, Jim Jagielski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80311 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 23, 1998
-
-
Ralf S. Engelschall authored
be used as a Reverse Proxy (where the backend servers are choosen via a `rnd' map) and to allow mass virtual hosting without <VirtualHost> sections (where you have to fix the case of server names when translating the Host-Header to a directory structure). Together with the comitted ProxyPassReverse directive we now have solved two things the users have asked in the past: 1. The ability to use Apache as a full-featured Reverse Proxy 2. The ability to do mass virtual hosting without <VirtualHost> sections. For both topics we should write stand-alone documents (perhaps inside htdocs/manual/misc/) because they are not trivial to do, even when we now have the functionality ;-) Submitted by: Ralf S. Engelschall Reviewed by: Dean Gaudet, Ralf S. Engelschall git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80298 13f79535-47bb-0310-9956-ffa450edef68
-
Ralf S. Engelschall authored
used as a full-featured Reverse Proxy in front of a backend webserver cluster. Submitted by: Ralf S. Engelschall Reviewed by: Martin Kraemer, Ralf S. Engelschall git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80296 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 20, 1998
-
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80251 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
fix slight semantic error git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80249 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 18, 1998
-
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80244 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80240 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
error messages generated. Introduced cmd->end_token to make it easier to do nested sections with proper error reporting. (Note that it can't be used for <IfModule> or <Limit> unfortunately.) PR#379: <Files> is not allowed within <Location> because it has no effect. PR#1817: Change <Files> to work with basenames only. This fixes both the bug introduced by the wildcarding change (* doesn't match /) and bugs such as <Files a*b> not working. PR: 379, 1817 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80233 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 15, 1998
-
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80220 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 14, 1998
-
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80213 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80211 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 12, 1998
-
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80193 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 11, 1998
-
-
Ken Coar authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80190 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80188 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 07, 1998
-
-
dgaudet authored
page. Submitted by: Lars Eilebrecht Reviewed by: Dean Gaudet git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80155 13f79535-47bb-0310-9956-ffa450edef68
-
brian authored
lost connection no longer a "warn" error, so needed a new one. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80145 13f79535-47bb-0310-9956-ffa450edef68
-
brian authored
Playing whack-a-mole; first stab at docs for LogLevel. Could someone confirm? git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80141 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 05, 1998
-
-
Ken Coar authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80134 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
It has been said, and verily it is true, that weblint rocks. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80132 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
corrections coming up. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80130 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
Submitted by: Brian K Smith <briank.smith@computer.org> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80128 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80121 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
to custom-tailor the apache ErrorDocuments to taste, adding the advantage of returning internationalized versions of the error messages depending on the client's language preferences. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80119 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 04, 1998
-
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80114 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 03, 1998
-
-
pcs authored
still pretty minimal. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80100 13f79535-47bb-0310-9956-ffa450edef68
-