packages/docs/eliza-cloud-rollout.md
This document defines the Eliza Cloud rollout as one of several server targets exposed through the same chooser-first startup entry point.
Local The backend runs on the user's machine with the current full-local behavior and full local permissions.
Eliza Cloud
The frontend provisions and connects to a managed container through Eliza Cloud at elizacloud.ai.
Remote Eliza backend
The frontend connects to an already running Eliza backend by address plus access key (ELIZA_API_TOKEN).
deploymentTarget.runtime = "local" for a local serverdeploymentTarget.runtime = "remote" for a remote or LAN serverdeploymentTarget.runtime = "cloud" for an Eliza Cloud serverserviceRouting, not hosting state.linkedAccounts.elizacloud; it does not imply Eliza Cloud inference unless serviceRouting.llmText.backend = "elizacloud".ELIZA_API_TOKEN.ELIZA_ALLOWED_ORIGINS.ELIZA_API_TOKEN.elizacloud.ai is the canonical managed control plane.app.eliza.ai with a one-time launch session that selects the hosted server target and skips manual server entry.app.eliza.ai already exchanges managed launch sessions directly with Eliza Cloud./api/cloud/* passthrough routes so it can persist the user's Eliza Cloud API key into local config and runtime state.deploy/cloudflare/eliza-cloud-proxy/ instead of standing up a separate application server.Eliza Cloud and Remote Eliza cloud sub-options.deploymentTarget.runtime = "cloud".Eliza Cloud labels from the managed auth/runtime surfaces.Use this when the user wants to host their own backend and connect from the Eliza web frontend.
Manually connect or a discovered remote server, then enter:
ELIZA_API_TOKEN)Recommended environment:
ELIZA_API_BIND=0.0.0.0
ELIZA_API_TOKEN=$(openssl rand -hex 32)
ELIZA_ALLOWED_ORIGINS=https://app.eliza.ai,https://eliza.ai,https://elizacloud.ai,https://www.elizacloud.ai
Optional Tailscale exposure:
tailscale serve --https=443 http://127.0.0.1:2138
For a public Tailscale-hosted URL:
tailscale funnel --https=443 http://127.0.0.1:2138
Use this only if a Eliza-owned browser origin is required for policy or routing reasons.
deploy/cloudflare/eliza-cloud-proxy/.https://www.elizacloud.ai.The concrete proxy setup now lives in docs/eliza-cloud-deployment.md.