Files
nats-server/test/configs/multi_accounts.conf
Derek Collison 2bd7553c71 System Account on by default.
Most of the changes are to turn it off for tests that were watching subscriptions and such.

Signed-off-by: Derek Collison <derek@nats.io>
2020-05-29 17:56:45 -07:00

30 lines
495 B
Plaintext

listen: 127.0.0.1:4033
http: 127.0.0.1:8033
password = "s3cr3t!"
accounts: {
engineering: {
users = [
{user: alice, password: $password}
{user: bob, password: $password}
]
}
legal: {
users = [
{user: john, password: $password}
{user: mary, password: $password}
]
}
finance: {
users = [
{user: peter, password: $password}
{user: paul, password: $password}
]
}
}
no_sys_acc: true