docs: add port convention for multi-agent deployments
ARGUS_PORT = 8100 + (UID mod 100) * 10 Zeus (0): 8100, Doxios (1002): 8120, Hermes (1003): 8130
This commit is contained in:
parent
c8676423cf
commit
5b3dc4e7d9
1 changed files with 19 additions and 0 deletions
19
README.md
19
README.md
|
|
@ -176,3 +176,22 @@ MIT
|
|||
## Author
|
||||
|
||||
Zeus @ Olymp
|
||||
|
||||
## Port Convention
|
||||
|
||||
For multi-agent deployments, use this formula:
|
||||
|
||||
```
|
||||
ARGUS_PORT = 8100 + (UID mod 100) * 10
|
||||
```
|
||||
|
||||
| Agent | UID | Dashboard | Datasette |
|
||||
|--------|------|-----------|-----------|
|
||||
| Zeus | 0 | 8100 | 8101 |
|
||||
| Doxios | 1002 | 8120 | 8121 |
|
||||
| Hermes | 1003 | 8130 | 8131 |
|
||||
|
||||
Set in systemd service or environment:
|
||||
```bash
|
||||
Environment=ARGUS_PORT=8130
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue