To not run with TLS, you need to set the NATS_ENABLE_TLS flag to false and remove the TLS configuration from deploy/compose/nats_config/nats.cfg
19 lines
444 B
INI
19 lines
444 B
INI
server_name: $NATS_NAME
|
|
port: 4222
|
|
http_port: 8222
|
|
authorization: {
|
|
users: [
|
|
{user: $NATS_USER, password: $NATS_PW}
|
|
]
|
|
}
|
|
tls: {
|
|
cert_file: "/tmp/nats/config/cert.pem"
|
|
key_file: "/tmp/nats/config/key.pem"
|
|
ca_file: "/tmp/nats/config/rootCA.pem"
|
|
}
|
|
// enables jetstream, an empty block will enable and use defaults
|
|
jetstream {
|
|
// jetstream data will be in /data/nats-server/jetstream
|
|
store_dir: "/tmp/nats/jetstream"
|
|
}
|