Skip to content

Commit

Permalink
Fix maxconn documentation
Browse files Browse the repository at this point in the history
It configures MaxIdleConnsPerHost not MaxConnsPerHost
  • Loading branch information
slobo committed Jan 13, 2018
1 parent b5202c3 commit e49e24c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/ref/proxy.maxconn.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: "proxy.maxconn"
`proxy.maxconn` configures the maximum number of cached
incoming and outgoing connections.

This configures the [MaxConnsPerHost](https://golang.org/pkg/net/http/#Transport.MaxConnsPerHost)
This configures the [MaxIdleConnsPerHost](https://golang.org/pkg/net/http/#Transport.MaxIdleConnsPerHost)
of the [http.Transport](https://golang.org/pkg/net/http/#Transport).

The default is
Expand Down
2 changes: 1 addition & 1 deletion fabio.properties
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@
# proxy.maxconn configures the maximum number of cached
# incoming and outgoing connections.
#
# This configures the MaxConnsPerHost of the http.Transport.
# This configures the MaxIdleConnsPerHost of the http.Transport.
#
# The default is
#
Expand Down

0 comments on commit e49e24c

Please sign in to comment.