Docs: Documented the http.*host and transport.*host settings

This commit is contained in:
Clinton Gormley 2014-10-17 15:01:21 +02:00
parent 4567b326cf
commit 646f7acf5c
2 changed files with 13 additions and 0 deletions

View File

@ -25,6 +25,12 @@ The following are the settings that can be configured for HTTP:
|Setting |Description |Setting |Description
|`http.port` |A bind port range. Defaults to `9200-9300`. |`http.port` |A bind port range. Defaults to `9200-9300`.
|`http.bind_host` |The host address to bind the HTTP service to. Defaults to `http.host` (if set) or `network.bind_host`.
|`http.publish_host` |The host address to publish for HTTP clients to connect to. Defaults to `http.host` (if set) or `network.publish_host`.
|`http.host` |Used to set the `http.bind_host` and the `http.publish_host` Defaults to `http.host` or `network.host`.
|`http.max_content_length` |The max content of an HTTP request. Defaults |`http.max_content_length` |The max content of an HTTP request. Defaults
to `100mb` to `100mb`

View File

@ -31,6 +31,13 @@ is behind a proxy or firewall and the `transport.tcp.port` is not directly
addressable from the outside. Defaults to the actual port assigned via addressable from the outside. Defaults to the actual port assigned via
`transport.tcp.port`. `transport.tcp.port`.
|`transport.bind_host` |The host address to bind the transport service to. Defaults to `transport.host` (if set) or `network.bind_host`.
|`transport.publish_host` |The host address to publish for nodes in the cluster to connect to. Defaults to `transport.host` (if set) or `network.publish_host`.
|`transport.host` |Used to set the `transport.bind_host` and the `transport.publish_host` Defaults to `transport.host` or `network.host`.
|`transport.tcp.connect_timeout` |The socket connect timeout setting (in |`transport.tcp.connect_timeout` |The socket connect timeout setting (in
time setting format). Defaults to `30s`. time setting format). Defaults to `30s`.