Network
Runtime networking, proxying, and secure exposure.
AlphaBase is local-first. By default, runtime traffic stays on loopback.
Local-Only Default
--hostnamedefaults to127.0.0.1- server/web ports default to random available ports
Use explicit static port when integrating external clients:
alphabase serve --hostname 127.0.0.1 --port 4096Secure Remote Access
If you bind to 0.0.0.0, protect access:
ALPHABASE_SERVER_PASSWORD=strong-password alphabase serve --hostname 0.0.0.0 --port 4096Optional transport hardening:
alphabase serve --tls --hostname 0.0.0.0 --port 4096Proxy Settings
AlphaBase respects standard proxy env vars:
export HTTPS_PROXY=https://proxy.example.com:8080export HTTP_PROXY=http://proxy.example.com:8080export NO_PROXY=localhost,127.0.0.1Enterprise Certificates
For custom CA roots:
export NODE_EXTRA_CA_CERTS=/path/to/ca-cert.pemCORS
Allow additional frontend origins if needed:
alphabase serve --cors https://app.example.com