Documentation Index
Fetch the complete documentation index at: https://docs.draskencloud.com/llms.txt
Use this file to discover all available pages before exploring further.
Sources
Nexus loads configuration in this order (later sources win):config/default.toml— bundled defaults- Environment variables prefixed with
GATEWAY_
Environment Variable Format
Nested TOML sections map to double-underscore__ separators:
| TOML | Environment Variable |
|---|---|
[server] proxy_port | GATEWAY_SERVER__PROXY_PORT |
[server] admin_token | GATEWAY_SERVER__ADMIN_TOKEN |
[cache] enabled | GATEWAY_CACHE__ENABLED |
[cache.redis] url | GATEWAY_CACHE__REDIS__URL |
Hot Reload
Some runtime tunables can be patched without restart via:Database Drivers
| Driver | Value | Notes |
|---|---|---|
| SQLite | sqlite | Default, zero-dependency, single instance |
| PostgreSQL | postgres | Recommended for production / multi-instance |
| MySQL | mysql | Full support |
| CockroachDB | cockroach | Uses PostgreSQL wire protocol |
Migrations are embedded in the binary. Set
GATEWAY_AUTO_MIGRATE=true to apply them on startup.