]>
granicus.if.org Git - apache/log
Rich Bowen [Sat, 10 Sep 2016 15:01:36 +0000 (15:01 +0000)]
mod_dbd connection info from trunk; rebuild other stuff
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1760182 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 10 Sep 2016 14:47:12 +0000 (14:47 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1760177 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 10 Sep 2016 14:46:27 +0000 (14:46 +0000)]
XML update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1760176 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 10 Sep 2016 14:42:49 +0000 (14:42 +0000)]
XML update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1760174 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Sat, 10 Sep 2016 12:01:39 +0000 (12:01 +0000)]
Revert r1760148's mergeinfo changes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1760150 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Sat, 10 Sep 2016 10:22:56 +0000 (10:22 +0000)]
Add proposal+vote for mod_proxy_fcgi
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1760148 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Fri, 9 Sep 2016 22:26:25 +0000 (22:26 +0000)]
Vote.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1760114 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Fri, 9 Sep 2016 22:09:16 +0000 (22:09 +0000)]
Propose.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1760113 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Thu, 8 Sep 2016 01:08:49 +0000 (01:08 +0000)]
IRC/serverfault question about AH01757
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1759731 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 6 Sep 2016 17:41:58 +0000 (17:41 +0000)]
Merge r1757010, r1757011 from trunk:
Delay some memory allocation in order to save 272 bytes in the 'request' memory pool if mod_status handler is triggered and is not able to handle the request
Fix <p> tag closing syntax
Submitted by: jailletc36
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1759476 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 6 Sep 2016 17:39:25 +0000 (17:39 +0000)]
promote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1759473 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 6 Sep 2016 17:39:05 +0000 (17:39 +0000)]
vote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1759472 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 6 Sep 2016 17:38:34 +0000 (17:38 +0000)]
Merge r1758307, r1758308, r1758309, r1758311 from trunk:
mpm_winnt: remove 'data' AcceptFilter in favor of 'connect'
The 'data' AcceptFilter optimization instructs Windows to wait until
data is received on a connection before completing the AcceptEx
operation. Unfortunately, it seems this isn't performed atomically --
AcceptEx "partially" accepts the incoming connection during the wait for
data, leaving all other incoming connections in the accept queue. This
opens the server to a denial of service.
Since the fix for this requires a substantial rearchitecture (likely
involving multiple outstanding calls to AcceptEx), disable the 'data'
filter for now and replace it with 'connect', which uses the AcceptEx
interface but does not wait for data.
Users running prior releases of httpd on Windows should explicitly move
to a 'connect' AcceptFilter in their configurations if they are
currently using the default 'data' filter.
Many thanks to mludha, Arthur Ramsey, Paul Spangler, and many others for
their assistance in tracking down and diagnosing this issue.
PR: 59970
mpm_winnt: remove the AcceptEx data network bucket
Follow-up to the prior commit: without an incoming data buffer, the
custom network bucket code is now orphaned and we can remove it
entirely. This has the added benefit that we are no longer using the
internal OVERLAPPED.Pointer field, which is discouraged by the MSDN
docs.
mpm_winnt: remove duplication of ap_process_connection
Further follow-up to the previous commit: now that we no longer patch a
network bucket into the brigade, we can revert to calling
ap_process_connection() directly instead of duplicating its logic.
docs: rebuild
Submitted by: jchampion
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1759471 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 6 Sep 2016 17:36:14 +0000 (17:36 +0000)]
Merge r1758310 from trunk:
mpm_winnt: clear OVERLAPPED structs before reuse
MSDN documentation states that
Any unused members of [an OVERLAPPED] structure should always be
initialized to zero before the structure is used in a function call.
Otherwise, the function may fail and return ERROR_INVALID_PARAMETER.
Prior to this patch, the internal state left over from previous
overlapped I/O was passed into the next call. It's unclear what effect
this might have, if any. (I have not personally witnessed an
ERROR_INVALID_PARAMETER myself.)
Submitted by: jchampion
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1759470 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 6 Sep 2016 17:35:54 +0000 (17:35 +0000)]
Merge r1756852, r1756853 from trunk:
Be more consistent when we alocate this brigade.
This should save a few bytes in case of early exit and is, IMHO, cleaner.
Fix some style (spaces only)
Submitted by: jailletc36
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1759469 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 6 Sep 2016 17:35:31 +0000 (17:35 +0000)]
Merge r1756846 from trunk:
Remove unused typedef uthn_dbd_conf
Submitted by: jailletc36
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1759468 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Mon, 5 Sep 2016 00:13:23 +0000 (00:13 +0000)]
vote/promote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1759195 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Thu, 1 Sep 2016 15:59:05 +0000 (15:59 +0000)]
update after backport
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758802 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Thu, 1 Sep 2016 15:58:38 +0000 (15:58 +0000)]
Merge of r1758083 from trunk:
mod_cgid: Resolve a case where a short CGI response causes a subsequent
CGI to be killed prematurely, resulting in a truncated subsequent
response.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758798 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Thu, 1 Sep 2016 15:56:20 +0000 (15:56 +0000)]
vote and accept
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758797 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Wed, 31 Aug 2016 09:14:39 +0000 (09:14 +0000)]
Merge of r1758558 from trunk.
mod_proxy_http2: fix for netware build
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758559 13f79535 -47bb-0310-9956-
ffa450edef68
Jacob Champion [Tue, 30 Aug 2016 21:22:37 +0000 (21:22 +0000)]
Vote.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758477 13f79535 -47bb-0310-9956-
ffa450edef68
Christophe Jaillet [Tue, 30 Aug 2016 20:42:56 +0000 (20:42 +0000)]
Some easy proposals
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758466 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 30 Aug 2016 19:24:43 +0000 (19:24 +0000)]
Merge r1758446 from trunk:
Without AP_DEBUG_ASSERT, these could still be NULL during runtime
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758447 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 30 Aug 2016 12:15:14 +0000 (12:15 +0000)]
vote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758374 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 30 Aug 2016 12:14:37 +0000 (12:14 +0000)]
Merge r1757662 from trunk:
* Add missing copy of hcuri and hcexpr ftom the worker to the health check worker.
PR: 60038
Submitted by: zdeno <zdeno@scnet.sk>
Submitted by: rpluem
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758373 13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Tue, 30 Aug 2016 01:10:51 +0000 (01:10 +0000)]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758314 13f79535 -47bb-0310-9956-
ffa450edef68
Jacob Champion [Tue, 30 Aug 2016 00:19:25 +0000 (00:19 +0000)]
Propose.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758312 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Mon, 29 Aug 2016 21:08:46 +0000 (21:08 +0000)]
vote/promote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758302 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Mon, 29 Aug 2016 13:05:22 +0000 (13:05 +0000)]
add cgid conn_id thing
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758216 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sun, 28 Aug 2016 14:00:49 +0000 (14:00 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758117 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sun, 28 Aug 2016 14:00:09 +0000 (14:00 +0000)]
XML update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758116 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Sat, 27 Aug 2016 12:23:35 +0000 (12:23 +0000)]
Merge of r1757985,r1758003 from trunk
mod_http2: fixed bug in stream shutdown, support for nghttp2 invalid header callback from 1.14.0 and onwards.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1758011 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Sat, 27 Aug 2016 10:12:23 +0000 (10:12 +0000)]
Updated backport proposal with the latest discussion on dev@
about Last-Modified header handling.
I removed jchampion's vote since it was related to a completely
different solution.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757982 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Fri, 26 Aug 2016 13:00:47 +0000 (13:00 +0000)]
Merge r1757838 from trunk:
add [flags] to syntax
per http://httpd.apache.org/docs/2.4/mod/mod_rewrite.html#comment_5728
split list of flags out of the massive CondPattern list.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757839 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 25 Aug 2016 12:54:06 +0000 (12:54 +0000)]
Merge r1754391, r1754399 from trunk:
mod_reqtimeout: Fix body timeout disabling for CONNECT requests to avoid
triggering mod_proxy_connect's AH01018 once the tunnel is established.
https://bugzilla.mozilla.org/show_bug.cgi?id=
1279483 #c9
mod_reqtimeout: follow up to r1754391: fix missing "else".
Submitted by: ylavic
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757675 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 25 Aug 2016 12:53:03 +0000 (12:53 +0000)]
Merge r1750854, r1750855, r1750947, r1750955, r1750960 from trunk:
ab: add SNI support when available.
ab: follow up to r1750854: put the -I at the right place for apr_getopt().
ab: follow up to r1750854.
Use SNI when available by default, and invert -I logic to now disable it.
ab: follow up to r1750854: some comments and better naming.
ab: follow up to r1750854: still better naming, and a C89 fix.
Submitted by: ylavic
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757674 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 25 Aug 2016 12:51:05 +0000 (12:51 +0000)]
Merge r1756611, r1748155 from trunk:
mod_dav: follow up to r1746207: fix typo (missing '/') for closing tag.
mod_dav: making mod_dav.h compile with clang again
Submitted by: ylavic, icing
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757673 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 25 Aug 2016 12:50:42 +0000 (12:50 +0000)]
Merge r1753257 from trunk:
Restore 'HEAD' method as a special case of GET with the common ID
Submitted by: wrowe
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757672 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 25 Aug 2016 12:50:22 +0000 (12:50 +0000)]
Merge r1753167 from trunk:
mod_proxy_fcgi: avoid loops serving proxied error documents
This commit should solve the issue indicated in PR 55415.
Httpd loops while serving a error document if:
1) The error document's content is proxied.
2) ProxyErrorOverride is set.
The solution proposed is to limit the use of ap_die only
to the initial request. I tested the change with very basic
scenarios but I am not sure if I got all the use cases,
feedback is really welcome.
Submitted by: elukey
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757671 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 25 Aug 2016 12:49:32 +0000 (12:49 +0000)]
Merge r1752347 from trunk:
Force mod_proxy_fcgi to read the whole FCGI response
even when the content has not been modified (HTTP 304).
The problem is described in PR 59838. This patch should
avoid bogus reads causing the following issues with
HTTP 304 responses:
- AH01068: Got bogus version X, expected 1
- AH01069: Got bogus rid X, expected 1
- AH01075: Error dispatching request to :
- HTTP 503 logged instead of 304 (even if the external
client gets correctly a 304)
As discussed on IRC the HTTP_PRECONDITION_FAILED use case
should be handled like the HTTP_NOT_MODIFIED one but it will
be done in a separate commit.
Submitted by: elukey
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757670 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 25 Aug 2016 12:48:18 +0000 (12:48 +0000)]
Merge r1756038 from trunk:
Fix spelling in comments and text files.
No functional change.
PR 59990
Submitted by: rjung
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757669 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 25 Aug 2016 12:46:58 +0000 (12:46 +0000)]
promotes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757668 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 25 Aug 2016 12:46:13 +0000 (12:46 +0000)]
some votes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757667 13f79535 -47bb-0310-9956-
ffa450edef68
Ruediger Pluem [Thu, 25 Aug 2016 11:47:20 +0000 (11:47 +0000)]
* Add proposal
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757664 13f79535 -47bb-0310-9956-
ffa450edef68
Ruediger Pluem [Thu, 25 Aug 2016 11:28:50 +0000 (11:28 +0000)]
* Vote and promote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757661 13f79535 -47bb-0310-9956-
ffa450edef68
Ruediger Pluem [Thu, 25 Aug 2016 11:27:51 +0000 (11:27 +0000)]
* Revert errornous r1757659
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757660 13f79535 -47bb-0310-9956-
ffa450edef68
Ruediger Pluem [Thu, 25 Aug 2016 11:26:46 +0000 (11:26 +0000)]
* Vote and promote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757659 13f79535 -47bb-0310-9956-
ffa450edef68
Christophe Jaillet [Thu, 25 Aug 2016 04:58:07 +0000 (04:58 +0000)]
xforms fr
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757602 13f79535 -47bb-0310-9956-
ffa450edef68
Christophe Jaillet [Thu, 25 Aug 2016 04:56:22 +0000 (04:56 +0000)]
Fix some French translations in order explanations to match examples (r1757599 in trunk)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757601 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Wed, 24 Aug 2016 22:33:32 +0000 (22:33 +0000)]
Propose fix for https://bugzilla.mozilla.org/show_bug.cgi?id=
1279483
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757580 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Wed, 24 Aug 2016 15:23:12 +0000 (15:23 +0000)]
merge of
1752145 ,
1753498 ,
1753541 ,
1754129 ,
1754414 ,
1754534 ,
1755323 ,
1756844 ,
1757524 ,
1757534 ,
1757540 from trunk
mod_http2: backport of latest changes
- intermediate responses
- graceful shutdown of connections
- ht debug draft update
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757542 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Tue, 23 Aug 2016 00:24:23 +0000 (00:24 +0000)]
synch with trunk minus RewriteMapOptions.
PR60024 cleanups around per-dir processing/redundancy/terminology.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757291 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sun, 21 Aug 2016 11:45:52 +0000 (11:45 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757052 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sun, 21 Aug 2016 11:45:06 +0000 (11:45 +0000)]
XML update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757051 13f79535 -47bb-0310-9956-
ffa450edef68
Christophe Jaillet [Sat, 20 Aug 2016 18:42:14 +0000 (18:42 +0000)]
Fix a typo (r1756991 in trunk)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1757021 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Fritsch [Fri, 19 Aug 2016 16:32:24 +0000 (16:32 +0000)]
vote + promote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756935 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Thu, 18 Aug 2016 12:01:52 +0000 (12:01 +0000)]
One more follow up to r1756560.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756763 13f79535 -47bb-0310-9956-
ffa450edef68
Christophe Jaillet [Thu, 18 Aug 2016 04:56:56 +0000 (04:56 +0000)]
xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756709 13f79535 -47bb-0310-9956-
ffa450edef68
Christophe Jaillet [Thu, 18 Aug 2016 04:55:45 +0000 (04:55 +0000)]
Improve highlight and formatting. (r1756706 in trunk)
Remove some trailing spaces to synch with trunk
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756708 13f79535 -47bb-0310-9956-
ffa450edef68
Jacob Champion [Wed, 17 Aug 2016 19:18:46 +0000 (19:18 +0000)]
Comment, promote.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756677 13f79535 -47bb-0310-9956-
ffa450edef68
Jacob Champion [Wed, 17 Aug 2016 18:39:33 +0000 (18:39 +0000)]
Add a 2.4.x backport patch to my proposal
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756674 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Wed, 17 Aug 2016 13:25:11 +0000 (13:25 +0000)]
Add better logging (debug) to PR 21935 proposal.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756632 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Wed, 17 Aug 2016 11:12:03 +0000 (11:12 +0000)]
Propose follow up to r1756560.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756613 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Wed, 17 Aug 2016 01:22:21 +0000 (01:22 +0000)]
Propose.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756571 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Tue, 16 Aug 2016 23:27:47 +0000 (23:27 +0000)]
Merge r1753594 from trunk:
* Prevent redirect loops between workers within a balancer by limiting the
number of redirects to the number balancer members.
PR: 59864
Submitted by: rpluem
Reviewed by: rpluem, jim, ylavic
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756563 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Tue, 16 Aug 2016 23:25:44 +0000 (23:25 +0000)]
Merge r1753592 from trunk:
* Do not overwrite r->status with access_status if access_status is OK or DONE
as in this case r->status might contain the true response code.
PR: 59869
Submitted by: rpluem
Reviewed by: rpluem, jim, ylavic
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756562 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Tue, 16 Aug 2016 23:22:39 +0000 (23:22 +0000)]
Merge r1748047 from trunk:
mod_dav: Add dav_begin_multistatus, dav_send_one_response,
dav_finish_multistatus, dav_send_multistatus, dav_handle_err,
dav_failed_proppatch, dav_success_proppatch to mod_dav.h.
Submitted by: minfrin
Reviewed by: minfrin, jim, ylavic
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756561 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Tue, 16 Aug 2016 23:17:46 +0000 (23:17 +0000)]
Merge r1746207 from trunk:
mod_dav: Add support for childtags to dav_error.
Submitted by: minfrin
Reviewed by: minfrin, jim, ylavic
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756560 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Tue, 16 Aug 2016 23:12:07 +0000 (23:12 +0000)]
Merge r1753228, r1753229 from trunk:
httpoxy workarounds, first draft patch as published for all 2.2.x+ sources
Optimization to httpoxy workaround, for 2.4.23+ only.
Submitted by: Dominic Scheirlinck <dominic vendhq.com>, ylavic
Reviewed/backported by: wrowe, jim, ylavic
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756559 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Tue, 16 Aug 2016 22:44:05 +0000 (22:44 +0000)]
Promote.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756557 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Tue, 16 Aug 2016 22:29:56 +0000 (22:29 +0000)]
Vote, promote.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756556 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Tue, 16 Aug 2016 22:00:47 +0000 (22:00 +0000)]
Propose.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756554 13f79535 -47bb-0310-9956-
ffa450edef68
Nilgun Belma Buguner [Sun, 14 Aug 2016 14:29:02 +0000 (14:29 +0000)]
update transformations.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756326 13f79535 -47bb-0310-9956-
ffa450edef68
Nilgun Belma Buguner [Sun, 14 Aug 2016 14:28:31 +0000 (14:28 +0000)]
update for sync with English docs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756325 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 13 Aug 2016 15:24:27 +0000 (15:24 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756276 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 13 Aug 2016 15:23:44 +0000 (15:23 +0000)]
XML updates.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756275 13f79535 -47bb-0310-9956-
ffa450edef68
Rainer Jung [Thu, 11 Aug 2016 20:16:39 +0000 (20:16 +0000)]
Propose.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1756043 13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Thu, 11 Aug 2016 14:04:16 +0000 (14:04 +0000)]
mod_rewrite is a <module> not a <directive>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755988 13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Thu, 11 Aug 2016 13:59:58 +0000 (13:59 +0000)]
Correct link for Trawick\'s whatkilledus website
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755987 13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Thu, 11 Aug 2016 13:36:19 +0000 (13:36 +0000)]
rebuild transforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755980 13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Thu, 11 Aug 2016 13:34:59 +0000 (13:34 +0000)]
typo
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755978 13f79535 -47bb-0310-9956-
ffa450edef68
Nilgun Belma Buguner [Sat, 6 Aug 2016 18:52:11 +0000 (18:52 +0000)]
update transformations.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755408 13f79535 -47bb-0310-9956-
ffa450edef68
Nilgun Belma Buguner [Sat, 6 Aug 2016 18:51:06 +0000 (18:51 +0000)]
update for sync with English docs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755407 13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Fri, 5 Aug 2016 16:23:00 +0000 (16:23 +0000)]
rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755364 13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Fri, 5 Aug 2016 16:20:45 +0000 (16:20 +0000)]
Clarify phrasing, as per bz53152
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755363 13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Thu, 4 Aug 2016 17:03:22 +0000 (17:03 +0000)]
Hardly CHANGES-worthy
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755217 13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Thu, 4 Aug 2016 14:59:27 +0000 (14:59 +0000)]
Not strictly necessary, but may save someone from bumping their head against it
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755196 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Wed, 3 Aug 2016 11:50:07 +0000 (11:50 +0000)]
Merge r1753224 from trunk:
Unclear whether fdpass is common enough to justify a 'most' configuration,
but for the time being, assign it -something- for a build priority.
Submitted by: wrowe
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755078 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Wed, 3 Aug 2016 11:49:43 +0000 (11:49 +0000)]
Merge r1751970 from trunk:
PR59815: rewrite per-directory + fcgi broken in 2.4.23
remove the query string from r->filename before calculating environment
(SCRIPT_FILENAME) in mod_proxy_fcgi. Before PR59618, php-fpm would
see proxy:fcgi:// and do some of this same stripping.
Submitted by: covener
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755077 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Wed, 3 Aug 2016 11:48:07 +0000 (11:48 +0000)]
promote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755076 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Wed, 3 Aug 2016 11:46:43 +0000 (11:46 +0000)]
tested votes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755074 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Wed, 3 Aug 2016 11:45:48 +0000 (11:45 +0000)]
vote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755073 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Wed, 3 Aug 2016 11:44:41 +0000 (11:44 +0000)]
Merge r1753777 from trunk:
Permit mod_proxy_hcheck.c to compile on Win32 32-bit architectures.
This decoration is required for all apr_thread fn() entry points,
at least on some platforms.
Submitted by: wrowe
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1755072 13f79535 -47bb-0310-9956-
ffa450edef68
Jacob Champion [Tue, 2 Aug 2016 18:35:19 +0000 (18:35 +0000)]
Promote.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1754986 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Thu, 28 Jul 2016 13:15:26 +0000 (13:15 +0000)]
non-merge sync with r1752884 of mime.types from trunk.
The only uncommented change is application/x-woff -> application/woff
which was added for PR55293 by r1506674 in mid 2013.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1754408 13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Thu, 28 Jul 2016 09:23:15 +0000 (09:23 +0000)]
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1754376 13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Thu, 28 Jul 2016 09:19:35 +0000 (09:19 +0000)]
fix encoding in commit mails for spanish translations
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1754374 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Wed, 27 Jul 2016 13:48:25 +0000 (13:48 +0000)]
Vote for r1751970
Tested manually and verified httpd's mod_proxy_fcgi logs with various request types
(with/without query string, long query strings, etc..).
My only doubt was related to the '\0' terminator placed in the middle of the char array,
but after a chat with Eric on IRC I got a clear view of what happens (only the chars up
to the \0 terminator are placed in FCGI headers later on).
Last but not the least, in the bugzilla ticket the original requestor tested the change
and stated that solved his problem. Looks good to me for backport!
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1754272 13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Tue, 26 Jul 2016 16:50:18 +0000 (16:50 +0000)]
Propose showstopper fix for httpoxy mitigation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1754158 13f79535 -47bb-0310-9956-
ffa450edef68