Files
nats-server/test/configs/srv_a_perms.conf
Derek Collison dd61535e5a Cluster names are now required.
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>
2020-06-12 15:48:38 -07:00

34 lines
590 B
Plaintext

# Cluster Server A with Permissions
listen: 127.0.0.1:5222
http: 127.0.0.1:5223
cluster {
listen: 127.0.0.1:5244
name: xyz
authorization {
user: ruser
password: top_secret
timeout: 0.5
}
permissions {
import: "foo"
export: {
allow: "*"
deny: ["foo", "nats"]
}
}
# 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://ruser:top_secret@127.0.0.1:5246
]
}
no_sys_acc: true