CINXE.COM

[Apache-SVN] Log of /httpd/httpd/branches/2.4.x/.gitignore

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <!-- ViewVC :: http://www.viewvc.org/ --> <head> <title>[Apache-SVN] Log of /httpd/httpd/branches/2.4.x/.gitignore</title> <meta name="generator" content="ViewVC 1.1.26" /> <link rel="shortcut icon" href="/vc-static/images/favicon.ico" /> <link rel="stylesheet" href="/vc-static/styles.css" type="text/css" /> </head> <body> <div class="vc_navheader"> <table><tr> <td><strong><a href="/viewvc?view=roots"><span class="pathdiv">/</span></a><a href="/viewvc/">[Apache-SVN]</a><span class="pathdiv">/</span><a href="/viewvc/httpd/">httpd</a><span class="pathdiv">/</span><a href="/viewvc/httpd/httpd/">httpd</a><span class="pathdiv">/</span><a href="/viewvc/httpd/httpd/branches/">branches</a><span class="pathdiv">/</span><a href="/viewvc/httpd/httpd/branches/2.4.x/">2.4.x</a><span class="pathdiv">/</span>.gitignore</strong></td> <td style="text-align: right;"></td> </tr></table> </div> <div style="float: right; padding: 5px;"><a href="http://www.viewvc.org/" title="ViewVC Home"><img src="/vc-static/images/viewvc-logo.png" alt="ViewVC logotype" width="240" height="70" /></a></div> <h1>Log of /httpd/httpd/branches/2.4.x/.gitignore</h1> <p style="margin:0;"> <a href="/viewvc/httpd/httpd/branches/2.4.x/"><img src="/vc-static/images/back_small.png" class="vc_icon" alt="Parent Directory" /> Parent Directory</a> | <a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?view=log"><img src="/vc-static/images/log.png" class="vc_icon" alt="Revision Log" /> Revision Log</a> </p> <hr /> <table class="auto"> <tr> <td>Links to HEAD:</td> <td> (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?view=markup">view</a>) (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?view=co">download</a>) (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?view=annotate">annotate</a>) </td> </tr> <tr> <td>Sticky Revision:</td> <td><form method="get" action="/viewvc" style="display: inline"> <div style="display: inline"> <input type="hidden" name="orig_pathtype" value="FILE"/><input type="hidden" name="orig_view" value="log"/><input type="hidden" name="orig_path" value="httpd/httpd/branches/2.4.x/.gitignore"/><input type="hidden" name="view" value="redirect_pathrev"/> <input type="text" name="pathrev" value="" size="6"/> <input type="submit" value="Set" /> </div> </form> </td> </tr> </table> <div> <hr /> <a name="rev1906475"></a> Revision <a href="/viewvc?view=revision&amp;revision=1906475"><strong>1906475</strong></a> - (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?revision=1906475&amp;view=markup">view</a>) (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?revision=1906475&amp;view=co">download</a>) (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?annotate=1906475">annotate</a>) - <a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?view=log&amp;r1=1906475">[select for diffs]</a> <br /> Modified <em>Mon Jan 9 07:35:18 2023 UTC</em> (22 months, 2 weeks ago) by <em>icing</em> <br />File length: 5238 byte(s) <br />Diff to <a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?r1=1889793&amp;r2=1906475">previous 1889793</a> (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?r1=1889793&amp;r2=1906475&amp;diff_format=h">colored</a>) <pre class="vc_log"> *) mod_http2: version 2.0.10 of the module, synchronizing changes with the gitgub version. This is a partial rewrite of how connections and streams are handled. - an APR pollset and pipes (where supported) are used to monitor the main connection and react to IO for request/response handling. This replaces the stuttered timed waits of earlier versions. - H2SerializeHeaders directive still exists, but has no longer an effect. - Clients that seemingly misbehave still get less resources allocated, but ongoing requests are no longer disrupted. - Fixed an issue since 1.15.24 that &quot;Server&quot; headers in proxied requests were overwritten instead of preserved. [PR by @daum3ns] - A regression in v1.15.24 was fixed that could lead to httpd child processes not being terminated on a graceful reload or when reaching MaxConnectionsPerChild. When unprocessed h2 requests were queued at the time, these could stall. See #212. - Improved information displayed in 'server-status' for H2 connections when Extended Status is enabled. Now one can see the last request that IO operations happened on and transferred IO stats are updated as well. - When reaching server limits, such as MaxRequestsPerChild, the HTTP/2 connection send a GOAWAY frame much too early on new connections, leading to invalid protocol state and a client failing the request. See PR65731 at &lt;<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=65731">https://bz.apache.org/bugzilla/show_bug.cgi?id=65731</a>&gt;. The module now initializes the HTTP/2 protocol correctly and allows the client to submit one request before the shutdown via a GOAWAY frame is being announced. - :scheme pseudo-header values, not matching the connection scheme, are forwarded via absolute uris to the http protocol processing to preserve semantics of the request. Checks on combinations of pseudo-headers values/absence have been added as described in RFC 7540. Fixes #230. - A bug that prevented trailers (e.g. HEADER frame at the end) to be generated in certain cases was fixed. See #233 where it prevented gRPC responses to be properly generated. - Request and response header values are automatically stripped of leading and trialing space/tab characters. This is equivalent behaviour to what Apache httpd's http/1.1 parser does. The checks for this in nghttp2 v1.50.0+ are disabled. - Extensive testing in production done by Alessandro Bianchi (@alexskynet) on the v2.0.x versions for stability. Many thanks! *) mod_proxy_http2: fixed #235 by no longer forwarding 'Host:' header when request ':authority' is known. Improved test case that did not catch that the previous 'fix' was incorrect. </pre> </div> <div> <hr /> <a name="rev1889793"></a> Revision <a href="/viewvc?view=revision&amp;revision=1889793"><strong>1889793</strong></a> - (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?revision=1889793&amp;view=markup">view</a>) (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?revision=1889793&amp;view=co">download</a>) (<a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?annotate=1889793">annotate</a>) - <a href="/viewvc/httpd/httpd/branches/2.4.x/.gitignore?view=log&amp;r1=1889793">[select for diffs]</a> <br /> Added <em>Wed May 12 10:14:42 2021 UTC</em> (3 years, 6 months ago) by <em>icing</em> <br />File length: 5193 byte(s) <pre class="vc_log">Merge of [<a href="/viewvc?view=revision&amp;revision=1886840">r1886840</a>, <a href="/viewvc?view=revision&amp;revision=1887085">r1887085</a>, <a href="/viewvc?view=revision&amp;revision=1887087">r1887087</a>, <a href="/viewvc?view=revision&amp;revision=1887134">r1887134</a>, <a href="/viewvc?view=revision&amp;revision=1887151">r1887151</a>, <a href="/viewvc?view=revision&amp;revision=1887152">r1887152</a>, <a href="/viewvc?view=revision&amp;revision=1887337">r1887337</a>, <a href="/viewvc?view=revision&amp;revision=1887340">r1887340</a>, <a href="/viewvc?view=revision&amp;revision=1887342">r1887342</a>, <a href="/viewvc?view=revision&amp;revision=1887343">r1887343</a>, <a href="/viewvc?view=revision&amp;revision=1887360">r1887360</a>, <a href="/viewvc?view=revision&amp;revision=1887364">r1887364</a>, <a href="/viewvc?view=revision&amp;revision=1887923">r1887923</a>, <a href="/viewvc?view=revision&amp;revision=1887965">r1887965</a>, <a href="/viewvc?view=revision&amp;revision=1887993">r1887993</a>, <a href="/viewvc?view=revision&amp;revision=1888006">r1888006</a>, <a href="/viewvc?view=revision&amp;revision=1888083">r1888083</a>, <a href="/viewvc?view=revision&amp;revision=1888084">r1888084</a>, <a href="/viewvc?view=revision&amp;revision=1888723">r1888723</a>, <a href="/viewvc?view=revision&amp;revision=1888724">r1888724</a>, <a href="/viewvc?view=revision&amp;revision=1888726">r1888726</a>, <a href="/viewvc?view=revision&amp;revision=1888729">r1888729</a>, <a href="/viewvc?view=revision&amp;revision=1889788">r1889788</a>] from trunk: *) core/mod_ssl/mod_md: - adding new ap_ssl_*() functions for a backward compatible replacement of the major optional mod_ssl functions. This allows other ssl modules to work without impersonating mod_ssl and also allows different ssl modules being active on separate ports. - latest mod_md with support for multiple certificates per domain and ECDSA certificates. Removed ACMEv1 support. - Interworking mod_md and ssl modules changed to exchange PEM strings instead of file paths for ACME challenges. - core/mod_ssl/mod_md: adding OCSP response provisioning as core feature. </pre> </div> <hr /> <p><a name="diff"></a> This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision. </p> <form method="get" action="/viewvc/httpd/httpd/branches/2.4.x/.gitignore" id="diff_select"> <table cellpadding="2" cellspacing="0" class="auto"> <tr> <td>&nbsp;</td> <td> <input type="hidden" name="view" value="diff"/> Diffs between <input type="text" size="12" name="r1" value="1906475" /> and <input type="text" size="12" name="r2" value="1889793" /> </td> </tr> <tr> <td>&nbsp;</td> <td> Type of Diff should be a <select name="diff_format" onchange="submit()"> <option value="h" >Colored Diff</option> <option value="l" >Long Colored Diff</option> <option value="f" >Full Colored Diff</option> <option value="u" selected="selected">Unidiff</option> <option value="c" >Context Diff</option> <option value="s" >Side by Side</option> </select> <input type="submit" value=" Get Diffs " /> </td> </tr> </table> </form> <hr /> <table> <tr> <td><address><a href="mailto:infrastructure at apache.org">infrastructure at apache.org</a></address></td> <td style="text-align: right;"><strong><a href="/vc-static/help_log.html">ViewVC Help</a></strong></td> </tr> <tr> <td>Powered by <a href="http://viewvc.tigris.org/">ViewVC 1.1.26</a></td> <td style="text-align: right;">&nbsp;</td> </tr> </table> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10