Basics
Basic configuration revolves around 4 settings:
The store to read JWTs from
The HTTP/S configuration
NATS (for cases where updates are enabled)
Logging
For complete information on please refer to the project's Github.
nsc
Configuration
nsc
ConfigurationFor a basic usage of the server you can specify the -nsc
flag, and specify the path to an operator in your environment.
If you have not yet created an operator or accounts, you'll need to do so before continuing. See NSC
You can easily locate the path by running nsc env
to print your nsc
settings:
The path you are interested in the Stores Dir
. This is the root of all operators, you'll also need the name of your operator. If your current operator is not listed, you can list all your available operators by doing:
To start the nats-account-server
with the operator Test
:
By default the server will serve JWTs on the localhost at port 9090. The last line in the shown in the printout is important, that is the resolver URL you'll have to provide on your NATS server configuration. You'll also need the matching operator JWT which is on ~/.nsc/nats/Test/Test.jwt
if you are following the example above. On the server configuration you'll need to expand the ~
as necessary. Here's what my NATS server configuration looks like:
Note that servers you create with the -nsc
option (or store option) are read-only. This means that the server will not accept POST requests to update the JWT store.
Directory Configuration
You can start a server using a plain directory. In this case you'll be responsible for adding any JWT that you want resolved.
The server looks for account JWTs by using the public key of the account as the file name followed by the extension
.jwt
. The server will not introspect the JWTs, so if you don't name the files correctly, it will fail to find them or serve a JWT that doesn't match the requested account.
Configuration for the NATS server is the same as in the previous example:
A step by step tutorial using directory configuration can be found here.
Configuration File
While the -nsc
and -dir
store flags are sufficient for some very simple developer setups, any production or non-read-only server will require a configuration file.
Let's take a look at the configuration options:
Configuration Options
Option
Description
http
An http
configuration block specifying HTTP options.
logging
A logging
configuration block specifying server logging options.
nats
A nats
configuration block specifying NATS connection information for the account server to push JWT changes to a NATS server.
operatorjwtpath
The path to an operator JWT. Required for non-read-only servers. Only JWTs signed by the operator (or one of it's signing keys) are accepted.
store
A store
configuration block specifying store options.
systemaccountjwtpath
Path to an Account JWT that should be returned as the system account.
primary
URL for the primary, protocol://host:port
.
replicationtimeout
Timeout, in milliseconds, used by the replica when talking to the primary, defaults to 5000
.
store
Configuration
store
ConfigurationOption
Description
dir
Configures a directory as a store.
nsc
Configures an nsc read-only store. The value should be the path to an operator directory. Option is mutually exclusive with dir
.
readonly
If true
, the store will not accept POST requests. Note that to receive requests, the store must also have operatorjwtpath
specified as a root option.
shard
If true
, JWTs are shared in the store directory.
logging
Options
logging
OptionsOption
Description
time
If true
, a timestamp is added to log messages.
debug
If true
, debug messages are logged.
trace
If true
, trace messages are logged.
colors
If true
, messages are logged using ANSI color escape sequences.
pid
If true
, the process id for the server is added to log messages.
http
Options
http
OptionsOption
Description
host
Interface to listen for requests on.
port
Port to listen for requests on.
readtimeout
Max amount of time in milliseconds to wait for a http read operation to complete.
writetimeout
Max amount of time in milliseconds to wait for a http write operation to complete.
nats
Options
nats
OptionsOption
Description
servers
List of NATS servers for the account server to use when connecting to a NATS server to publish updates.
connecttimeout
Max amount of time in milliseconds to wait for a NATS connection.
reconnecttimewait
Amount of time in milliseconds to between NATS server reconnect attempts.
tls
A tls
configuration block.
usercredentials
A credentials creds file for connecting to the NATS server. Account must be a member of a system account.
tls
Options
tls
OptionsOption
Description
root
filepath to the CA certificate.
cert
filepath to the certificate.
cert
filepath to the certificate key.
Example Setup
Provided a setup with 4 accounts, one of them a system account, this example shows how to set up the account server by:
adding the account server to the operator
configuring the account server
push the accounts to the account server
configure a
nats-server
to make use of the account servertest the setup
最后更新于
这有帮助吗?