mirror of
https://github.com/gogrlx/nats-server.git
synced 2026-04-02 03:38:42 -07:00
Added cluster names as required for prep work for clustered JetStream. System can dynamically pick a cluster name and settle on one even in large clusters. Signed-off-by: Derek Collison <derek@nats.io>
20 lines
389 B
Plaintext
20 lines
389 B
Plaintext
# New Cluster config file
|
|
|
|
listen: 127.0.0.1:5343
|
|
|
|
cluster {
|
|
listen: 127.0.0.1:5344
|
|
name: xyz
|
|
|
|
# Routes are actively solicited and connected to from this server.
|
|
# Other servers can connect to us if they supply the correct credentials
|
|
# in their routes definitions from above.
|
|
|
|
routes = [
|
|
nats-route://127.0.0.1:5345
|
|
nats-route://127.0.0.1:5346
|
|
]
|
|
}
|
|
|
|
no_sys_acc: true
|