- Feb 15, 2013
-
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446736 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446722 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446677 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
It is important that we send a proper error status, or search engines may index the error message. Remove the link in the speaking-http-on-https error message. With SNI, the link will usually be wrong. So better send no link at all. PR: 50823 Backport of r1328325 and r1328326 from trunk resp. r1334346 from 2.4.x. Submitted by: sf Backported by: rjung Reviewed by: wrowe, rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446642 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
instead of DEBUG. PR 52162 Partial backport of r1165056 from trunk/2.4.x. Submitted by: sf Backported by: rjung Reviewed by: wrowe, rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446637 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
BZ 54416 Forward unknown methods as request attributes using method id SC_M_JK_STORED=0xFF and request attribute id SC_A_STORED_METHOD=13. Code ported from mod_jk (which got it from mod_jk2). Supported by Tomcat at least since TC 4.1. Doesn't seem to be supported by Jetty though. Backport of r1435178 from trunk resp. r1436400 from 2.4.x. Submitted/backported by: rjung Reviewed by: wrowe, rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446624 13f79535-47bb-0310-9956-ffa450edef68
-
Eric Covener authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446619 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446582 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 14, 2013
-
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446010 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1446007 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 12, 2013
-
-
Rainer Jung authored
Backport of r1398066 from trunk resp. r1416585 form 2.4.x. Submitted by: gryzor Reviewed by: wrowe, rjung Backported by: gryzor git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445133 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445120 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
Windows. Followup to r1375696. PR 54140. Backport of r1408402 from trunk resp. r1409773 from 2.4.x. Submitted by: covener Reviewed by: wrowe, rjung Backported by: covener git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445119 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445118 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445115 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
PR54510. Submitted by: kbrand Reviewed by: druggeri, wrowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445112 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445109 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
the -f command-line switch, and adapt the output to more accurately report what SSL/TLS protocol was negotiated (use SSL_get_version() instead of SSL_CIPHER_get_version()). PR: 53916 Backport of r1395225 from trunk resp. r1400946 from 2.4.x Submitted by: Nicolás Pernas Maradei <nico emutex com> Reviewed/amended by: kbrand, covener, wrowe Backported by: kbrand git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445104 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
Response if they so choose to do so. Previously an attempt to cache a 206 was arbitrarily allowed if the response contained an Expires or Cache-Control header, and arbitrarily denied if both headers were missing. Currently the disk and memory cache providers do not cache 206 Partial Responses. Backport of r952823 from trunk. Submitted by: minfrin Reviewed by: rjung, wrowe Backported by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445103 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
dropping apr_array_clear. The dependency was introduced by a backport in 2.2.22. Submitted by: covener Reviewed by: rjung, trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445101 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
alert if the chosen listener is configured for https; not perfect but better than sending an HTTP request. Adjust comments. Backport of r1327036 and r1327080 from turnk, resp. r1356884 from 2.4.x. Submitted by: jorton Reviewed by: covener, wrowe Backported by: rjung git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445100 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1445036 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 02, 2013
-
-
Daniel Ruggeri authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1441805 13f79535-47bb-0310-9956-ffa450edef68
-
Eric Covener authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1441769 13f79535-47bb-0310-9956-ffa450edef68
-
https://svn.apache.org/repos/asf/httpd/httpd/trunk/Eric Covener authored
Correct the instructions for stopping an Apache server running in a Windows console. Reported by jhannwong. PR47325 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1441768 13f79535-47bb-0310-9956-ffa450edef68
-
https://svn.apache.org/repos/asf/httpd/httpd/trunk/Eric Covener authored
fill in the dots for http://httpd.apache.org/docs/2.4/platform/windows.html#comment_802 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1441752 13f79535-47bb-0310-9956-ffa450edef68
-
Kaspar Brand authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1441707 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 26, 2013
-
-
Lucien Gentis authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1438912 13f79535-47bb-0310-9956-ffa450edef68
-
https://svn.apache.org/repos/asf/httpd/httpd/trunk/Eric Covener authored
try to emphasize that ErrorDocument nnn /foo doesn't send a HTTP redirect. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1438840 13f79535-47bb-0310-9956-ffa450edef68
-
https://svn.apache.org/repos/asf/httpd/httpd/trunk/Eric Covener authored
http://httpd.apache.org/docs/2.4/platform/windows.html#comment_760 Get rid of "SystemRoot" used where ServerRoot was meant, by dropping this whole part of the sentence. (use drive letters, unless they're network drives and you're running as a service ...) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1438836 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 24, 2013
-
-
Vincent Deffontaines authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1438172 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 21, 2013
-
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1436448 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1436428 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1436421 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1436402 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 19, 2013
-
-
Daniel Ruggeri authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1435597 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 18, 2013
-
-
Lucien Gentis authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1435136 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 16, 2013
-
-
Daniel Ruggeri authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1434399 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Ruggeri authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1434397 13f79535-47bb-0310-9956-ffa450edef68
-
Eric Covener authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1433917 13f79535-47bb-0310-9956-ffa450edef68
-