Added client_max_body_size to authPath location
Seems like nginx denies the request because it would be over the max body size, event if `proxy_pass_request_body` is `off`. This fixes 811
This commit is contained in:
parent
4c868cf62a
commit
d4600a87b5
1 changed files with 3 additions and 0 deletions
|
@ -327,6 +327,9 @@ http {
|
||||||
proxy_set_header Host {{ $location.ExternalAuth.Host }};
|
proxy_set_header Host {{ $location.ExternalAuth.Host }};
|
||||||
proxy_ssl_server_name on;
|
proxy_ssl_server_name on;
|
||||||
|
|
||||||
|
client_max_body_size "{{ $location.Proxy.BodySize }}";
|
||||||
|
|
||||||
|
|
||||||
set $target {{ $location.ExternalAuth.URL }};
|
set $target {{ $location.ExternalAuth.URL }};
|
||||||
proxy_pass $target;
|
proxy_pass $target;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue