mirror of
https://github.com/gogrlx/nats-server.git
synced 2026-04-16 19:14:41 -07:00
Added update to parse and load operator JWTs. Changed to add in signing keys from operator JWT to list of trusted keys. Added URL account resolver. Added account claim updates by system messages. Signed-off-by: Derek Collison <derek@nats.io>
16 lines
453 B
Plaintext
16 lines
453 B
Plaintext
# Server that loads an operator JWT
|
|
|
|
listen: 127.0.0.1:22222
|
|
|
|
# Can be an array of filenames as well.
|
|
# Key can be operator, operators, roots, root, root_operators, root_operator
|
|
|
|
operator = "./configs/nkeys/op.jwt"
|
|
|
|
# This is for account resolution.
|
|
# Can be MEMORY (Testing) or can be URL(url).
|
|
# The resolver will append the account name to url for retrieval.
|
|
# E.g.
|
|
# resolver = URL("https://api.synadia.com/ngs/v1/accounts/jwt")
|
|
#
|
|
resolver = MEMORY |