[users@httpd] Stop executing ProxyPassMatch when error is set

2022-02-22 Thread alchemist vk
Hi All, I configured reverse proxy for /test/api as below: ProxyPassMatch ^/(test/api) unix:/run/testservice/http.socket| http://localhost . But my question is, if for some reason, /test/api gets authenticated and auth module sets the value as 401, then how do I stop it from forwarding the

Re: [users@httpd] Re: Reverse proxy for TLS connections

2022-02-22 Thread Eric Covener
On Tue, Feb 22, 2022 at 10:44 AM Tom Browder wrote: > > On Mon, Feb 21, 2022 at 13:34 Tom Browder wrote: >> >> On Mon, Feb 21, 2022 at 10:16 Eric Covener wrote: > > > Let me try to rephrase the situation and question: > > If I use a reverse proxy as in the basic example in the docs, does that

Re: [users@httpd] Re: Reverse proxy for TLS connections

2022-02-22 Thread Tom Browder
On Mon, Feb 21, 2022 at 13:34 Tom Browder wrote: > On Mon, Feb 21, 2022 at 10:16 Eric Covener wrote: Let me try to rephrase the situation and question: If I use a reverse proxy as in the basic example in the docs, does that handle https traffic also? Or does the the "http://www.example.com

Re: [users@httpd] Re: Reverse proxy for TLS connections

2022-02-22 Thread Eric Covener
On Tue, Feb 22, 2022 at 12:43 PM Tom Browder wrote: > > On Tue, Feb 22, 2022 at 09:50 Eric Covener wrote: >> >> On Tue, Feb 22, 2022 at 10:44 AM Tom Browder wrote: >> > >> > On Mon, Feb 21, 2022 at 13:34 Tom Browder wrote: >> >> >> >> On Mon, Feb 21, 2022 at 10:16 Eric Covener wrote: >> > >>

Re: [users@httpd] Re: Reverse proxy for TLS connections

2022-02-22 Thread Tom Browder
On Tue, Feb 22, 2022 at 09:50 Eric Covener wrote: > On Tue, Feb 22, 2022 at 10:44 AM Tom Browder > wrote: > > > > On Mon, Feb 21, 2022 at 13:34 Tom Browder wrote: > >> > >> On Mon, Feb 21, 2022 at 10:16 Eric Covener wrote: > > > > > > Let me try to rephrase the situation and question: > > > >

Re: [users@httpd] Re: Reverse proxy for TLS connections

2022-02-22 Thread Tom Browder
On Tue, Feb 22, 2022 at 11:59 Eric Covener wrote: ... > The server decrypts incoming requests the same way regardless of how > it will later handle the request (static file, CGI, proxy). Okay, thanks. I'll head in that direction and see if I can get it all to work. Thank you very much, Eric,