fix typos
This commit is contained in:
parent
f42c81817a
commit
9206a8baf9
2 changed files with 7 additions and 7 deletions
|
@ -84,10 +84,10 @@ In addition to the built-in functions provided by the Go package the following f
|
||||||
- hasSuffix: [strings.HasSuffix](https://golang.org/pkg/strings/#HasSuffix)
|
- hasSuffix: [strings.HasSuffix](https://golang.org/pkg/strings/#HasSuffix)
|
||||||
- toUpper: [strings.ToUpper](https://golang.org/pkg/strings/#ToUpper)
|
- toUpper: [strings.ToUpper](https://golang.org/pkg/strings/#ToUpper)
|
||||||
- toLower: [strings.ToLower](https://golang.org/pkg/strings/#ToLower)
|
- toLower: [strings.ToLower](https://golang.org/pkg/strings/#ToLower)
|
||||||
- buildLocation: helper to build the NGINX Location section in each server
|
- buildLocation: helps to build the NGINX Location section in each server
|
||||||
- buildProxyPass: builds the reverse proxy configuration
|
- buildProxyPass: builds the reverse proxy configuration
|
||||||
- buildRateLimitZones: helper to build all the required rate limit zones
|
- buildRateLimitZones: helpes to build all the required rate limit zones
|
||||||
- buildRateLimit: helper to build a limit zone inside a location if contains a rate limit annotation
|
- buildRateLimit: helpes to build a limit zone inside a location if contains a rate limit annotation
|
||||||
|
|
||||||
|
|
||||||
### Custom NGINX upstream checks
|
### Custom NGINX upstream checks
|
||||||
|
@ -242,7 +242,7 @@ By default the controller redirects (301) to `HTTPS` if TLS is enabled for that
|
||||||
|
|
||||||
To configure this feature for specific ingress resources, you can use the `ingress.kubernetes.io/ssl-redirect: "false"` annotation in the particular resource.
|
To configure this feature for specific ingress resources, you can use the `ingress.kubernetes.io/ssl-redirect: "false"` annotation in the particular resource.
|
||||||
|
|
||||||
When using SSL offloading outside of cluster (e.g. AWS ELB) it may be usefull to enforce a redirect to `HTTPS` even when there is not TLS cert available. This can be achieved by using the `ingress.kubernetes.io/force-ssl-redirect: "true"` annotation in the particular resource.
|
When using SSL offloading outside of cluster (e.g. AWS ELB) it may be useful to enforce a redirect to `HTTPS` even when there is not TLS cert available. This can be achieved by using the `ingress.kubernetes.io/force-ssl-redirect: "true"` annotation in the particular resource.
|
||||||
|
|
||||||
|
|
||||||
### Whitelist source range
|
### Whitelist source range
|
||||||
|
@ -326,7 +326,7 @@ The zero value disables keep-alive client connections.
|
||||||
http://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_timeout
|
http://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_timeout
|
||||||
|
|
||||||
**load-balance:** Sets the algorithm to use for load balancing. The value can either be round_robin to
|
**load-balance:** Sets the algorithm to use for load balancing. The value can either be round_robin to
|
||||||
use the default round robin load balancer, least_conn to use the least connected method, or
|
use the default round robin loadbalancer, least_conn to use the least connected method, or
|
||||||
ip_hash to use a hash of the server for routing. The default is least_conn.
|
ip_hash to use a hash of the server for routing. The default is least_conn.
|
||||||
http://nginx.org/en/docs/http/load_balancing.html.
|
http://nginx.org/en/docs/http/load_balancing.html.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue