Commit eb3a324a authored by Joost van Oorschot's avatar Joost van Oorschot
Browse files

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

parent 299034b5
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;
    }
  }
}