Skip to content

Commit 672c7e0

Browse files
committed
Fix link hashes, brackets
1 parent 4503808 commit 672c7e0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/user-guide/nginx-configuration/configmap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -809,14 +809,14 @@ _References:_
809809
Sets the bucket size for the variables hash table.
810810

811811
_References:_
812-
[https://nginx.org/en/docs/http/ngx_http_map_module.html#variables_hash_bucket_size](https://nginx.org/en/docs/http/ngx_http_map_module.html#variables_hash_bucket_size)
812+
[https://nginx.org/en/docs/http/ngx_http_map_module.html#map_hash_bucket_size](https://nginx.org/en/docs/http/ngx_http_map_module.html#map_hash_bucket_size)
813813

814814
## variables-hash-max-size
815815

816816
Sets the maximum size of the variables hash table.
817817

818818
_References:_
819-
[https://nginx.org/en/docs/http/ngx_http_map_module.html#variables_hash_max_size](https://nginx.org/en/docs/http/ngx_http_map_module.html#variables_hash_max_size)
819+
[https://nginx.org/en/docs/http/ngx_http_map_module.html#map_hash_max_size](https://nginx.org/en/docs/http/ngx_http_map_module.html#map_hash_max_size)
820820

821821
## upstream-keepalive-connections
822822

internal/ingress/controller/config/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -482,11 +482,11 @@ type Configuration struct {
482482
WorkerShutdownTimeout string `json:"worker-shutdown-timeout,omitempty"`
483483

484484
// Sets the bucket size for the variables hash table.
485-
// https://nginx.org/en/docs/http/ngx_http_map_module.html#variables_hash_bucket_size
485+
// https://nginx.org/en/docs/http/ngx_http_map_module.html#map_hash_bucket_size
486486
VariablesHashBucketSize int `json:"variables-hash-bucket-size,omitempty"`
487487

488488
// Sets the maximum size of the variables hash table.
489-
// https://nginx.org/en/docs/http/ngx_http_map_module.html#variables_hash_max_size
489+
// https://nginx.org/en/docs/http/ngx_http_map_module.html#map_hash_max_size
490490
VariablesHashMaxSize int `json:"variables-hash-max-size,omitempty"`
491491

492492
// Activates the cache for connections to upstream servers.
@@ -510,7 +510,7 @@ type Configuration struct {
510510
UpstreamKeepaliveRequests int `json:"upstream-keepalive-requests,omitempty"`
511511

512512
// Sets the maximum size of the variables hash table.
513-
// https://nginx.org/en/docs/http/ngx_http_map_module.html#variables_hash_max_size
513+
// https://nginx.org/en/docs/http/ngx_http_map_module.html#map_hash_max_size
514514
LimitConnZoneVariable string `json:"limit-conn-zone-variable,omitempty"`
515515

516516
// Sets the timeout between two successive read or write operations on client or proxied server connections.

internal/ingress/defaults/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ type Backend struct {
6666

6767
// Sets the size of the buffer used for reading the first part of the response received from the
6868
// proxied server. This part usually contains a small response header.
69-
// https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffer_size)
69+
// https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffer_size
7070
ProxyBufferSize string `json:"proxy-buffer-size"`
7171

7272
// Limits the total size of buffers that can be busy sending a response to the client while

0 commit comments

Comments
 (0)