Add nginx proxy_max_temp_file_size configuration option

This commit is contained in:
Maxime Ginters 2019-08-12 13:27:05 -04:00
parent 0b375989f3
commit d8bd8c5619
6 changed files with 58 additions and 31 deletions

View file

@ -154,4 +154,8 @@ type Backend struct {
// Modifies the HTTP version the proxy uses to interact with the backend.
// http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_http_version
ProxyHTTPVersion string `json:"proxy-http-version"`
// Sets the maximum temp file size when proxy-buffers capacity is exceeded.
// http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_max_temp_file_size
ProxyMaxTempFileSize string `json:"proxy-max-temp-file-size"`
}