Hello!
On Wed, Feb 24, 2021 at 06:44:49PM +0100, Vincent Blondel wrote:
> Thank You for the swift answer Maxim.
> If I understand, you mean something like that should be going to Work ...
>
> location /subrequest/ {
> proxy_pass xxx;
> }
> location /anyrequest/ {
> auth_request /subrequest/;
> e
Thank You for the swift answer Maxim.
If I understand, you mean something like that should be going to Work ...
location /subrequest/ {
proxy_pass xxx;
}
location /anyrequest/ {
auth_request /subrequest/;
error_page 400 = @fallback;
proxy_pass xxx;
}
location @fallback {
proxy_pass_request_body of
Hello!
On Wed, Feb 24, 2021 at 10:39:57AM +0100, Vincent Blondel wrote:
> Hello all,
> I have a quick question about the usage of IF and auth_request.
> I would like to know if it is possible to use a IF statement to condition
> the proxy behaviour of one /location depending on the response heade
Hi,
since this module is a third-party module, I'd recommend to take a
look on GitHub, there are many forks of this module are available
there.
--
Sergey Osokin
On Tue, Feb 23, 2021 at 09:54:00PM -0500, mondji wrote:
> Hi,
> I have setup this module
> https://bitbucket.org/nginx-goodies/nginx-st
Hello all,
I have a quick question about the usage of IF and auth_request.
I would like to know if it is possible to use a IF statement to condition
the proxy behaviour of one /location depending on the response headers of
the sub auth request ...
location /subrequest/ {
proxy_pass xxx;
}
loca