[users@httpd] Re: SSLCARevocationPath CRLs not reloaded after update

2022-04-03 Thread Hendrik Harms
. :-( Thanks, Hendrik Am Do., 31. März 2022 um 19:01 Uhr schrieb Orendt, John: > Hi > > > > After updating the CRL files. If there is a change in the CRL files then > restart gracefully the httpd. > > > > You need to check and compare periodically. > > > > John Ore

[users@httpd] SSLCARevocationPath CRLs not reloaded after update

2022-03-31 Thread Hendrik Harms
two possible workarounds but both are not very nice: A) restart gracefully the httpd after updating the CRL files B) set MaxConnectionsPerChild on a small value. regards, Hendrik -- ---------- Hendrik Harms mail: hendrik.ha...@gmail.com

Re: [users@httpd] ProxyPass option mapping=servlet hurts mod_rewrite

2022-03-03 Thread Hendrik Harms
Hi Yann, > RewriteRule "^/alpha/gobeta/(.*)$" http://server2.localnet:8080/beta/$1 [P] If the RewriteRule is specified with the option [P] it works correctly. The request https://example.ort/alpha/gobeta/anypath is sent to the beta backend. > Also, it seems to me that "/alpha/gobeta/.." is not

Re: [users@httpd] ProxyPass option mapping=servlet hurts mod_rewrite

2022-03-02 Thread Hendrik Harms
Hi Yann, after reading your commit comment in https://svn.apache.org/r1898509 I realised that one important test case is missing: What happens if mod_rewrite manipulates the URL of a target that is proxied with the option mapping=servlet? >From my point of view this test case fails. :-( Prox

Re: [users@httpd] ProxyPass option mapping=servlet hurts mod_rewrite

2022-03-01 Thread Hendrik Harms
hed: mod_rewrite_vs_proxy_pre_trans-v2_test_log.txt Thank you for the very quick response! Regards, Hendrik -- -- Hendrik Harms mail: hendrik.ha...@gmail.com Test-Setup: ## Both test cases: httpd-2.4.52 with patch mod_rewrite_vs_proxy_pre_trans-v2.d

[users@httpd] ProxyPass option mapping=servlet hurts mod_rewrite

2022-02-28 Thread Hendrik Harms
Hi httpd users, After adding the mapping=servlet option in the ProxyPass configuration, my RewriteRule no longer works as desired. Example: Hostname: example.org ProxyPass /alpha http://server1.localnet:8080/alpha ProxyPass /beta http://server2.localnet:8080/beta mapping=servlet

[users@httpd] enforce 503 response using RewriteRule or Redirect due to temporary maintenance

2018-06-22 Thread Hendrik Harms
The configuration directives "RewirteRule" and "Redirect" are having flags to send a FORBIDDEN or GONE response but I need something to send a 503 service_unavailable response to keep away traffic from my proxied backends during maintenance work. The idea is to use a RewriteMap for this cause I co