tcp
Listener
The TCP listener configures Boundary to listen on a TCP address/port.
listener "tcp" {
purpose = "api"
address = "127.0.0.1:9200"
}
listener "tcp" { purpose = "api" address = "127.0.0.1:9200"}
The listener
stanza may be specified more than once to make Boundary listen on multiple interfaces; however, only one listener marked for cluster
purpose is allowed.
tcp
Listener Parameters
General
purpose
(string: "")
- Specifies the purpose. Can beapi
,cluster
, orproxy
.address
(string: "127.0.0.1:9200")
– Specifies the address to bind to for listening.http_idle_timeout
(string: "5m")
- Specifies the maximum amount of time to wait for the next request when keep-alives are enabled. Ifhttp_idle_timeout
is zero, the value ofhttp_read_timeout
is used. If both are zero, the value ofhttp_read_header_timeout
is used. This is specified using a label suffix like"30s"
or"1h"
.http_read_header_timeout
(string: "10s")
- Specifies the amount of time allowed to read request headers. This is specified using a label suffix like"30s"
or"1h"
.http_read_timeout
(string: "30s")
- Specifies the maximum duration for reading the entire request, including the body. This is specified using a label suffix like"30s"
or"1h"
.http_write_timeout
string: "0")
- Specifies the maximum duration before timing out writes of the response and is reset whenever a new request’s header is read. The default value of"0"
means infinity. This is specified using a label suffix like"30s"
or"1h"
.max_request_duration
(string: "90s")
– Specifies the maximum request duration allowed before Boundary cancels the request. This overridesdefault_max_request_duration
for this listener.cors_enabled
(boolean: true)
- Specifies if CORS should be enabled, which allows Boundary to support external browser-based clients (not including admin UI), such as Boundary Desktop. If not specified, CORS will be enabled with an allowed origin that grants access to Boundary Desktop, unless overridden withcors_disable_default_allowed_origin_values
.cors_disable_default_allowed_origin_values
(boolean: false)
- Specifies that Boundary should not append default allowed origin values to any specified incors_allowed_origins
, such as Boundary Desktop’s origin. This also disables the behavior of enabling CORS ifcors_enabled
is not specified.cors_allowed_origins
(array(string): ["serve://boundary"])
- An array of allowed CORS origins. Origins must include protocol, host, and port (if port is different than the default for the specified protocol). To allow all origins, set to['*']
. By default, Boundary Desktop’s originserve://boundary
is appended to any values included here, unlesscors_disable_default_allowed_origin_values
is specified.cors_allowed_headers
(array(string): [])
– An array specifying headers that are permitted to be on cross-origin requests. Headers set via this parameter will be appended to the list of headers that Boundary allows by default, such as"Content-Type"
,"X-Requested-With"
, and"Authorization"
.
TLS
All tls
parameters are valid only for the api
listener. cluster
and proxy
connections use their own ephemeral TLS stacks. For more information, see the connections security concepts page.
tls_disable
(string: "false")
– Specifies if TLS will be disabled. Boundary assumes TLS by default, so you must explicitly disable TLS to opt-in to insecure communication.tls_cert_file
(string: <required-if-enabled, reloads-on-SIGHUP>)
– Specifies the path to the certificate for TLS. To configure the listener to use a CA certificate, concatenate the primary certificate and the CA certificate together. The primary certificate should appear first in the combined file. OnSIGHUP
, the path set here at Boundary startup will be used for reloading the certificate; modifying this value while Boundary is running will have no effect forSIGHUP
s.tls_key_file
(string: <required-if-enabled, reloads-on-SIGHUP>)
– Specifies the path to the private key for the certificate. If the key file is encrypted, you will be prompted to enter the passphrase on server startup. The passphrase must stay the same between key files when reloading your configuration usingSIGHUP
. OnSIGHUP
, the path set here at Boundary startup will be used for reloading the certificate; modifying this value while Boundary is running will have no effect forSIGHUP
s.tls_min_version
(string: "tls12")
– Specifies the minimum supported version of TLS. Accepted values are “tls10”, “tls11”, “tls12” or “tls13”.TLS 1.1 and lower are generally considered insecure.
tls_max_version
(string: "tls13")
– Specifies the maximum supported version of TLS, useful if appliances (e.g. load balancers) are not yet capable of higher levels. Accepted values are “tls10”, “tls11”, “tls12” or “tls13”.TLS 1.1 and lower are generally considered insecure.
tls_cipher_suites
(string: "")
– Override the default list of supported ciphersuites (which varies by TLS version) with the the specified comma-delimited list. The list of all available ciphersuites is available in the Golang TLS documentation.tls_prefer_server_cipher_suites
(string: "false")
– Specifies to prefer the server’s ciphersuite over the client ciphersuites.tls_require_and_verify_client_cert
(string: "false")
– Turns on client authentication for this listener; the listener will require a presented client cert that successfully validates against system CAs.tls_client_ca_file
(string: "")
– PEM-encoded Certificate Authority file used for checking the authenticity of client.
tcp
Listener Examples
Configuring TLS
This example shows enabling a TLS listener.
listener "tcp" {
purpose = "api"
tls_cert_file = "/etc/certs/Boundary.crt"
tls_key_file = "/etc/certs/Boundary.key"
}
listener "tcp" { purpose = "api" tls_cert_file = "/etc/certs/Boundary.crt" tls_key_file = "/etc/certs/Boundary.key"}
Listening on Multiple Interfaces
This example shows Boundary listening on a private interface, as well as localhost.
listener "tcp" {
purpose = "api"
address = "127.0.0.1:9200"
}
listener "tcp" {
purpose = "cluster"
address = "10.0.0.5:9200"
}
listener "tcp" { purpose = "api" address = "127.0.0.1:9200"}
listener "tcp" { purpose = "cluster" address = "10.0.0.5:9200"}