Configuration
The gateway
configuration block is similar to a cluster
block:
One difference is that instead of routes
you specify gateways
. As expected self-gateway connections are ignored, so you can share gateway configurations with minimal fuss.
Starting a server:
Once all the gateways are up, these clusters of one will forward messages as expected:
Gateway
Configuration Block
Gateway
Configuration BlockProperty
Description
name
Name for this cluster, all gateways belonging to the same cluster, should specify the same name.
reject_unknown
If true
, gateway will reject connections from gateways that are not configured in gateways
.
gateways
host
Interface where the gateway will listen for incoming gateway connections.
port
Port where the gateway will listen for incoming gateway connections.
listen
Combines host
and port
as <host>:<port>
tls
advertise
Hostport <host>:<port>
to advertise how this server can be contacted by other gateway members. This is useful in setups with NAT.
connect_retries
After how many failed connect attempts to give up establishing a connection to a discovered gateway. Default is 0
, do not retry. When enabled, attempts will be made once a second. This, does not apply to explicitly configured gateways.
authorization
Gateway
Entry
Gateway
EntryThe gateways
configuration block is a list of gateway entries with the following properties:
Property
Description
name
Gateway name.
url
Hostport <host>:<port>
describing where the remote gateway can be reached. If multiple IPs are returned, one is randomly selected.
urls
A list of url
strings.
tls
By using urls
and an array, you can specify a list of endpoints that form part of a cluster as below. A NATS Server will pick one of those addresses randomly and only establish a single outbound gateway connection to one of the members from another cluster:
最后更新于
这有帮助吗?