Skip to content

Commit

Permalink
feat(internal-gateway): bump proxy buffer limits
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-klimko committed Jan 26, 2024
1 parent 0c61e43 commit fd834ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/internal-gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v0.0.0
description: A Helm chart for Codefresh Internal Gateway
name: internal-gateway
version: 0.5.0
version: 0.6.0
home: https://github.com/codefresh-io/helm-charts
keywords:
- codefresh
Expand Down
2 changes: 1 addition & 1 deletion charts/internal-gateway/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# internal-gateway

![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![AppVersion: v0.0.0](https://img.shields.io/badge/AppVersion-v0.0.0-informational?style=flat-square)
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![AppVersion: v0.0.0](https://img.shields.io/badge/AppVersion-v0.0.0-informational?style=flat-square)

A Helm chart for Codefresh Internal Gateway

Expand Down
8 changes: 4 additions & 4 deletions charts/internal-gateway/templates/_location_map.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ locationSnippet: |
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
locationDirectives:
proxy_buffer_size: "64k"
proxy_buffers: "4 64k"
client_max_body_size: "5M"
client_body_buffer_size: "16k"
proxy_buffer_size: "128k"
proxy_buffers: "4 128k"
client_max_body_size: "10M"
client_body_buffer_size: "32k"
proxy_connect_timeout: "5s"
proxy_send_timeout: "60s"
proxy_read_timeout: "60s"
Expand Down

0 comments on commit fd834ac

Please sign in to comment.