Unverified Commit f68990b0 authored by Joost van Oorschot's avatar Joost van Oorschot Committed by GitHub
Browse files

Merge pull request #12 from deliveroo/increase_headers_bufffer

Increase the size of the buffer that stores the response headers to 8K
parents 299034b5 eb3a324a
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
# `nginx-sidecar` changelog

## 0.3.5

- Increase the size of the buffer that stores the response headers to 8K.

## 0.3.4

- Add `$upstream_status` to the nginx access log line
+1 −1
Original line number Diff line number Diff line
0.3.4
0.3.5
+3 −0
Original line number Diff line number Diff line
@@ -98,6 +98,9 @@ http {

      proxy_redirect off; # disable nginx redirect-rewrite logic
      proxy_pass http://app:<APP_PORT>;

      # The size of the buffer that stores the response headers
      proxy_buffer_size 8k;
    }
  }
}