Default path assignment
Only
web and api service types get public gateway routes. worker services have no public route — they are internal only.
A full-stack app with a web and api service gets:
https://full-stack.on.getfloo.com/→webhttps://full-stack.on.getfloo.com/api/→api
web service is the catch-all — any path not matched by a more specific prefix falls through to it.
Why same origin matters
All services share one hostname, so cookies and session tokens set by theweb service are visible to the api service without any cross-origin configuration. No CORS headers needed for same-origin requests.
If you separate services onto different domains, you’ll need to configure CORS and handle cross-origin cookie restrictions.
Per-service debug hostnames
Each service also gets its own hostname for direct access. The format includes the environment:
These are useful for debugging a specific service or connecting external tools directly to one service.
Custom domains
Add adomain field to a service in floo.app.toml to bind a custom domain to that service:
api.example.com goes directly to the api service, bypassing the shared hostname routing.
See Custom Domains for DNS setup.
Local development
Duringfloo dev, each service runs on its own localhost port. Discovery vars (API_URL, WEB_URL, etc.) are injected so services can find each other without hardcoding ports.
See floo dev for the full local dev reference.
localhost fallback diagnostics
Source validation treats localhost URLs as non-blocking warnings:- A localhost URL behind an explicit Node or Vite development guard does not emit a warning.
- A runtime-configured URL that may fall back to localhost emits
unverified_localhost_fallback. floo cannot verify the production value from source alone. - A localhost URL without a recognized development-only guard emits
hardcoded_localhost_fallback.
API_URL or a relative gateway path such as /api. Keep a localhost default behind an explicit development-only guard.
Limitations
- WebSockets use the same route table as HTTP. WebSocket upgrade requests
route to public
webandapiservices by host and path prefix. - Only
webandapiservice types are routable.workerservices are internal and have no public gateway route.