On 6/25/20 12:13 PM, Yann Ylavic wrote:
> Index: modules/proxy/mod_proxy.c
> ===================================================================
> --- modules/proxy/mod_proxy.c (revision 1879145)
> +++ modules/proxy/mod_proxy.c (working copy)
> @@ -987,10 +991,10 @@ PROXY_DECLARE(int) ap_proxy_trans_match(request_re
> "URI path '%s' matches proxy handler '%s'", r->uri,
> found);
>
> - return OK;
> + return servlet ? DONE : OK;
Why setting it to DONE in the servlet case? Wouldn't that cause
ap_process_request_internal to be left early?
> }
>
> - return DONE;
> + return HTTP_CONTINUE;
> }
>
> static int proxy_trans(request_rec *r, int pre_trans)
Regards
RĂ¼diger