26 lines
727 B
JSON
26 lines
727 B
JSON
{
|
|
"id": "access-leaf",
|
|
"title": "Server-to-server NATS leaf access",
|
|
"kind": "http",
|
|
"package": "verae-access-leaf",
|
|
"role": "access-leaf",
|
|
"managed": true,
|
|
"runtime": "HTTP :3023 + NATS verae.access.leaf.in",
|
|
"health": { "type": "http", "path": "/health", "timeoutMs": 2000 },
|
|
"ports": { "healthBase": 3023 },
|
|
"spawn": {
|
|
"cwd": "../verae-access-leaf",
|
|
"command": "node",
|
|
"args": ["src/server.js"]
|
|
},
|
|
"env": {
|
|
"PORT": "3023",
|
|
"AUTHZ_URL": "http://127.0.0.1:3020",
|
|
"LEAF_TOKEN": "leaf-dev-token",
|
|
"NATS_URL": "nats://127.0.0.1:4222"
|
|
},
|
|
"nats": {
|
|
"in": ["verae.access.leaf.in"],
|
|
"out": ["verae.access.authz.check", "verae.archive.put", "verae.archive.query"]
|
|
}
|
|
}
|