Joshua Slive
8a1e45e947
Make the arguments to the redirect directive clearer.
...
PR: 36166
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@240299 13f79535-47bb-0310-9956-ffa450edef68
2005-08-26 17:54:49 +00:00
André Malo
d25bf1132c
hmm. for some reason some transformed files are missing in the last commit ;)
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@240281 13f79535-47bb-0310-9956-ffa450edef68
2005-08-26 16:40:17 +00:00
Colm MacCarthaigh
ae0455044b
Update the transformations to reflect the new graceful-stop argument.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@240275 13f79535-47bb-0310-9956-ffa450edef68
2005-08-26 16:14:46 +00:00
Colm MacCarthaigh
ab0d82ccf2
Documentation changes relevant to new graceful-stop command line argument
...
for httpd and apachectl, and the the "GracefulShutdownTimeout" directive.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@240271 13f79535-47bb-0310-9956-ffa450edef68
2005-08-26 16:11:45 +00:00
Colm MacCarthaigh
803cdc87cd
Update the documentation for the ScriptSock directive to match the
...
.PID extension.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@240049 13f79535-47bb-0310-9956-ffa450edef68
2005-08-25 12:12:15 +00:00
André Malo
11a5397d1f
fix revision references and update transformation
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239692 13f79535-47bb-0310-9956-ffa450edef68
2005-08-24 15:30:52 +00:00
Jim Jagielski
e4e8151603
Document change in lbmethod= argument
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239684 13f79535-47bb-0310-9956-ffa450edef68
2005-08-24 15:09:31 +00:00
André Malo
b6a51f1d6f
build all
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239633 13f79535-47bb-0310-9956-ffa450edef68
2005-08-24 12:36:57 +00:00
André Malo
5ea66d99f4
build all
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239629 13f79535-47bb-0310-9956-ffa450edef68
2005-08-24 12:23:46 +00:00
Nick Kew
b9ecf2dcd7
Update docs to document ap_dbd_prepare function.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239617 13f79535-47bb-0310-9956-ffa450edef68
2005-08-24 12:02:34 +00:00
Colm MacCarthaigh
0f36c683fe
Update transformation
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239460 13f79535-47bb-0310-9956-ffa450edef68
2005-08-23 20:29:51 +00:00
Colm MacCarthaigh
acf227a492
Enhance CacheEnable/CacheDisable to control caching on a per-protocol, per-host
...
and per-path basis. Makes Cache(En|Dis)able useful for forward proxy servers.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239421 13f79535-47bb-0310-9956-ffa450edef68
2005-08-23 15:43:23 +00:00
André Malo
6fcf2b437f
build extraclean all (extraclean just to make sure I got them all :-)
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239209 13f79535-47bb-0310-9956-ffa450edef68
2005-08-22 18:17:15 +00:00
Martin Kraemer
a9e8d16070
Patch contributed by: Daniel Rall <dlr@apache.org>
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@227052 13f79535-47bb-0310-9956-ffa450edef68
2005-08-02 18:01:24 +00:00
Paul Querna
a9d4303025
rebuild docs.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@220312 13f79535-47bb-0310-9956-ffa450edef68
2005-07-22 12:46:16 +00:00
Martin Kraemer
17cad08ea5
Describe the new syntax:
...
SetenvIf OID("2.16.840.1.113730.1.13") "(.*)" NetscapeComment=$1
Ehhmm.... How do I make html from this again?
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@220310 13f79535-47bb-0310-9956-ffa450edef68
2005-07-22 12:36:25 +00:00
Paul Querna
a8bce20460
build.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@220287 13f79535-47bb-0310-9956-ffa450edef68
2005-07-22 10:00:46 +00:00
Rich Bowen
492d69d071
Remove some rather confusing phrasing regarding mod_proxy and how to
...
determine if it is installed.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@220063 13f79535-47bb-0310-9956-ffa450edef68
2005-07-21 13:34:11 +00:00
Martin Kraemer
b5a3f87755
Collaborative work: (Thanks, dreid!)
...
Implement OID checking for mod_ssl. This code allows for checking of arbitrary client
certificate extensions by OID, in a syntax like:
SSLRequire "BaDCA Generated Certificate" in Oid("2.16.840.1.113730.1.13") \
|| "committers" in Oid("1.3.6.1.4.1.18060.1")
Note the following:
* A given OID can occur multiple times in one cert, with different values. Therefore
the OID function compares the left-hand string against each of the OID values,
until a complete match is found. If none patches, the result is FALSE
* The left hand side can be another expression, so can be a reference to a variable
or an file() invocation etc.
* The OID is also just a reference to a string, or function, or whatever.
* My manual description is very short. Someone else please help improve the description
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@219940 13f79535-47bb-0310-9956-ffa450edef68
2005-07-20 16:42:58 +00:00
André Malo
fecc6fcd30
build bootstrap
...
`build all`
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@219715 13f79535-47bb-0310-9956-ffa450edef68
2005-07-19 17:11:44 +00:00
Hiroaki Kawai
a7e4a4da98
Update Japanese translation.
...
fix typo.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@219689 13f79535-47bb-0310-9956-ffa450edef68
2005-07-19 14:04:30 +00:00
Hiroaki Kawai
d29bc02496
Update Japanese translation.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@219656 13f79535-47bb-0310-9956-ffa450edef68
2005-07-19 11:33:50 +00:00
Hiroaki Kawai
b01689a7bb
Update Japanese translation.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@219653 13f79535-47bb-0310-9956-ffa450edef68
2005-07-19 10:50:15 +00:00
Jim Jagielski
f4572909ff
Good suggestion from a private Email. name changes.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@209827 13f79535-47bb-0310-9956-ffa450edef68
2005-07-08 15:58:46 +00:00
Jim Jagielski
eaccca5df3
Fold in latest SSL doc changes
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@209811 13f79535-47bb-0310-9956-ffa450edef68
2005-07-08 15:17:28 +00:00
William A. Rowe Jr
340df9ce2f
Add SSL_COMPRESS_METHOD variable (included in +StdEnvVars) to note
...
the negotiated compression.
Reviewed by: wrowe, Maxime Petazzoni
Submitted by: Georg v. Zezschwitz <gvz 2scale.de>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@209469 13f79535-47bb-0310-9956-ffa450edef68
2005-07-06 15:16:28 +00:00
Rich Bowen
677838d4f5
Add more detail to the RewriteMap rnd: example, as well as rewriting
...
some of the text that makes this feature seem less useful than it
actually is.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@201923 13f79535-47bb-0310-9956-ffa450edef68
2005-06-26 23:35:05 +00:00
André Malo
fc3a145330
* Rewritemaps use ${...}
...
* adjust the mime type directory in mod_mime.xml.ja as well (to get it uptodate
again)
* `build all`
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@193077 13f79535-47bb-0310-9956-ffa450edef68
2005-06-23 05:24:12 +00:00
Rich Bowen
7656bcc311
Correct the location of this resource.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@193037 13f79535-47bb-0310-9956-ffa450edef68
2005-06-23 01:19:31 +00:00
Rich Bowen
48f72a2e0a
Somehow I just committed the wrong file. This patch adds an example for
...
RewriteMap
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@193036 13f79535-47bb-0310-9956-ffa450edef68
2005-06-23 01:17:26 +00:00
Rich Bowen
3fd2c44170
Brief example of actually using a map, once defined.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@193035 13f79535-47bb-0310-9956-ffa450edef68
2005-06-23 01:12:19 +00:00
Paul Querna
d71c931648
build all.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@190984 13f79535-47bb-0310-9956-ffa450edef68
2005-06-16 19:09:31 +00:00
Paul Querna
97220fc14f
- Add documentation on the new AcceptFilter directive.
...
- Update Listen with the optional protocol arg.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@190982 13f79535-47bb-0310-9956-ffa450edef68
2005-06-16 19:05:58 +00:00
André Malo
89cf09257e
update German translation; update transformation
...
Reviewed by: Kess
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@190256 13f79535-47bb-0310-9956-ffa450edef68
2005-06-12 12:02:03 +00:00
André Malo
7fe60ec3c7
adjust revision reference; update transformation
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@189822 13f79535-47bb-0310-9956-ffa450edef68
2005-06-09 21:23:21 +00:00
Nick Kew
d88559efee
Fix link to mod_proxy_html
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@189754 13f79535-47bb-0310-9956-ffa450edef68
2005-06-09 13:15:49 +00:00
André Malo
a5949b1c37
update transformation
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@180075 13f79535-47bb-0310-9956-ffa450edef68
2005-06-05 06:01:16 +00:00
Joe Orton
a91f8025a8
Note that SSLUsername is ignored if FakeBasicAuth is used.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@179371 13f79535-47bb-0310-9956-ffa450edef68
2005-06-01 10:36:03 +00:00
Astrid Malo
1769b9210a
update transformation
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178796 13f79535-47bb-0310-9956-ffa450edef68
2005-05-27 16:48:56 +00:00
Hiroaki Kawai
2d3678a0ed
update Japanese translation.
...
Submitted by: kawai
Reviewed by: OKANO Takayoshi <kano@na.rim.or.jp >
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178722 13f79535-47bb-0310-9956-ffa450edef68
2005-05-27 01:06:32 +00:00
Joshua Slive
3d55a97253
Clean up the notes to the logformat section of the mod_log config docs.
...
These have been growing using the "here's something else we should
say" technique, without any serious thought for readability.
In particular:
- Remove the "..." in all the format strings, since almost nobody
uses this and it can be confusing. It is still documented, just
not included in the definitions.
- Create three sections: modifiers, examples, and a "notes" section
for stuff that doesn't go any place else.
- Remove the discussion of %v being the canonical name. I think
that it is quite clear since the addition of %V what the difference
is.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178530 13f79535-47bb-0310-9956-ffa450edef68
2005-05-25 20:16:26 +00:00
André Malo
53b2e844c9
build all
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178508 13f79535-47bb-0310-9956-ffa450edef68
2005-05-25 18:43:38 +00:00
Bradley Nicholes
0f1cc92d4e
Add mod_authn_alias to the list
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178496 13f79535-47bb-0310-9956-ffa450edef68
2005-05-25 17:38:35 +00:00
André Malo
e68b037e58
fix line endings and keyword expansion
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178365 13f79535-47bb-0310-9956-ffa450edef68
2005-05-25 04:31:28 +00:00
Bradley Nicholes
08f4747567
Documentation for mod_authn_alias
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178302 13f79535-47bb-0310-9956-ffa450edef68
2005-05-24 22:29:25 +00:00
Hiroaki Kawai
14b95603f9
Fix typo.
...
Submitted by: kano@na.rim.or.jp
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178194 13f79535-47bb-0310-9956-ffa450edef68
2005-05-24 15:47:29 +00:00
Hiroaki Kawai
3544523d91
Update Japanese translation.
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178192 13f79535-47bb-0310-9956-ffa450edef68
2005-05-24 15:43:19 +00:00
André Malo
35aee92aaa
update transformation
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@170780 13f79535-47bb-0310-9956-ffa450edef68
2005-05-18 17:26:38 +00:00
André Malo
99ab68650e
some markup cleanup, better topic section name, fix XML validation error
...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@170778 13f79535-47bb-0310-9956-ffa450edef68
2005-05-18 17:13:54 +00:00
André Malo
7c44e39e85
* fix EOL properties
...
* add LastChangedRevision keyword to mod_dbd.xml
* fix copyright year in mod_dbd.xml
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@170775 13f79535-47bb-0310-9956-ffa450edef68
2005-05-18 17:00:19 +00:00