File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
docs/user-guide/nginx-configuration Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -809,14 +809,14 @@ _References:_
809809Sets 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
816816Sets 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
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments