You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 27, 2019. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -262,6 +262,10 @@ _Note that Kubernetes annotation maps are all of Go type `map[string]string`. A
262
262
| <aname="ssl-hsts-max-age"></a>deis-router | deployment |[router.deis.io/nginx.ssl.hsts.maxAge](#ssl-hsts-max-age)|`"10886400"`| Maximum number of seconds user agents should observe HSTS rewrites. |
263
263
| <aname="ssl-hsts-include-sub-domains"></a>deis-router | deployment |[router.deis.io/nginx.ssl.hsts.includeSubDomains](#ssl-hsts-include-sub-domains)|`"false"`| Whether to enforce HSTS for subsequent requests to all subdomains of the original request. |
264
264
| <aname="ssl-hsts-preload"></a>deis-router | deployment |[router.deis.io/nginx.ssl.hsts.preload](#ssl-hsts-preload)|`"false"`| Whether to allow the domain to be included in the HSTS preload list. |
265
+
| <aname="proxy-buffers-enabled"></a>deis-router | deployment |[router.deis.io/nginx.proxyBuffers.enabled](#proxy-buffers-enabled)|`"false"`| Whether to enabled proxy buffering for all applications (this can be overridden on an application basis). |
266
+
| <aname="proxy-buffers-number"></a>deis-router | deployment |[router.deis.io/nginx.proxyBuffers.number](#proxy-buffers-number)|`"8"`|`number` argument to the nginx `proxy_buffers` directive for all applications (this can be overridden on an application basis). |
267
+
| <aname="proxy-buffers-size"></a>deis-router | deployment |[router.deis.io/nginx.proxyBuffers.size](#proxy-buffers-size)|`"4k"`|`size` argument to the nginx `proxy_buffers` directive expressed in bytes (no suffix), kilobytes (suffixes `k` and `K`), or megabytes (suffixes `m` and `M`). This setting applies to all applications, but can be overridden on an application basis. |
268
+
| <aname="proxy-buffers-busy-size"></a>deis-router | deployment |[router.deis.io/nginx.proxyBuffers.busySize](#proxy-buffers-busy-size)|`"8k"`| nginx `proxy_busy_buffers_size` expressed in bytes (no suffix), kilobytes (suffixes `k` and `K`), or megabytes (suffixes `m` and `M`). This setting applies to all applications, but can be overridden on an application basis. |
265
269
| <aname="builder-connect-timeout"></a>deis-builder | service |[router.deis.io/nginx.connectTimeout](#builder-connect-timeout)|`"10s"`| nginx `proxy_connect_timeout` setting expressed in units `ms`, `s`, `m`, `h`, `d`, `w`, `M`, or `y`. |
266
270
| <aname="builder-tcp-timeout"></a>deis-builder | service |[router.deis.io/nginx.tcpTimeout](#builder-tcp-timeout)|`"1200s"`| nginx `proxy_timeout` setting expressed in units `ms`, `s`, `m`, `h`, `d`, `w`, `M`, or `y`. |
267
271
| <aname="app-domains"></a>routable application | service |[router.deis.io/domains](#app-domains)| N/A | Comma-delimited list of domains for which traffic should be routed to the application. These may be fully qualified (e.g. `foo.example.com`) or, if not containing any `.` character, will be considered subdomains of the router's domain, if that is defined. |
@@ -271,10 +275,10 @@ _Note that Kubernetes annotation maps are all of Go type `map[string]string`. A
271
275
| <aname="app-tcp-timeout"></a>routable application | service |[router.deis.io/tcpTimeout](#app-tcp-timeout)| router's `defaultTimeout`| nginx `proxy_send_timeout` and `proxy_read_timeout` settings expressed in units `ms`, `s`, `m`, `h`, `d`, `w`, `M`, or `y`. |
272
276
| <aname="app-maintenance"></a>routable application | service |[router.deis.io/maintenance](#app-maintenance)|`"false"`| Whether the app is under maintenance so that all traffic for this app is redirected to a static maintenance page with an error code of `503`. |
273
277
| <aname="ssl-enforce"></a>routable application | service |[router.deis.io/ssl.enforce](#ssl-enforce)|`"false"`| Whether to respond with a 301 for all HTTP requests with a permanent redirect to the HTTPS equivalent address. |
274
-
| <aname="app-nginx-proxy-buffers-enabled"></a>routable application | service |[router.deis.io/nginx.proxyBuffers.enabled](#app-nginx-proxy-buffers-enabled)|`"false"`| Whether to enabled proxy buffering. |
275
-
| <aname="app-nginx-proxy-buffers-number"></a>routable application | service |[router.deis.io/nginx.proxyBuffers.number](#app-nginx-proxy-buffers-number)|`"8"`|`number` argument to the nginx `proxy_buffers` directive. |
276
-
| <aname="app-nginx-proxy-buffers-size"></a>routable application | service |[router.deis.io/nginx.proxyBuffers.size](#app-nginx-proxy-buffers-size)|`"4k"`|`size` argument to the nginx `proxy_buffers` directive expressed in bytes (no suffix), kilobytes (suffixes `k` and `K`), or megabytes (suffixes `m` and `M`). |
277
-
| <aname="app-nginx-proxy-buffers-busy-size"></a>routable application | service |[router.deis.io/nginx.proxyBuffers.busySize](#app-nginx-proxy-buffers-busy-size)|`"8k"`| nginx `proxy_busy_buffers_size` expressed in bytes (no suffix), kilobytes (suffixes `k` and `K`), or megabytes (suffixes `m` and `M`). |
278
+
| <aname="app-nginx-proxy-buffers-enabled"></a>routable application | service |[router.deis.io/nginx.proxyBuffers.enabled](#app-nginx-proxy-buffers-enabled)|`"false"`| Whether to enabled proxy buffering. This can be used to override the same option set globally on the router. |
279
+
| <aname="app-nginx-proxy-buffers-number"></a>routable application | service |[router.deis.io/nginx.proxyBuffers.number](#app-nginx-proxy-buffers-number)|`"8"`|`number` argument to the nginx `proxy_buffers` directive. This can be used to override the same option set globally on the router. |
280
+
| <aname="app-nginx-proxy-buffers-size"></a>routable application | service |[router.deis.io/nginx.proxyBuffers.size](#app-nginx-proxy-buffers-size)|`"4k"`|`size` argument to the nginx `proxy_buffers` directive expressed in bytes (no suffix), kilobytes (suffixes `k` and `K`), or megabytes (suffixes `m` and `M`). This can be used to override the same option set globally on the router. |
281
+
| <aname="app-nginx-proxy-buffers-busy-size"></a>routable application | service |[router.deis.io/nginx.proxyBuffers.busySize](#app-nginx-proxy-buffers-busy-size)|`"8k"`| nginx `proxy_busy_buffers_size` expressed in bytes (no suffix), kilobytes (suffixes `k` and `K`), or megabytes (suffixes `m` and `M`). This can be used to override the same option set globally on the router. |
0 commit comments