remote-connections.md +12 −3
1# Remote connections1# Remote connections
2 2
33SSH remote connections are currently in alpha. We are gradually rolling outSSH remote connections are currently in alpha. To enable them today, set
44access. Availability, setup flows, and supported environments may change as`remote_connections = true` in the `[features]` table in
55the feature improves.`~/.codex/config.toml`. Availability, setup flows, and supported environments
6may change as the feature improves.
6 7
7Remote connections let Codex work with projects that live on another8Remote connections let Codex work with projects that live on another
8SSH-accessible machine. Use them when the codebase, credentials, services, or9SSH-accessible machine. Use them when the codebase, credentials, services, or
424. In the Codex app, open **Settings > Connections**, add or enable the SSH host,434. In the Codex app, open **Settings > Connections**, add or enable the SSH host,
43 then choose a remote project folder.44 then choose a remote project folder.
44 45
46If remote connections don't appear yet, enable the alpha feature flag in
47`~/.codex/config.toml`:
48
49```toml
50[features]
51remote_connections = true
52```
53
45Remote project threads run commands, read files, and write changes on the54Remote project threads run commands, read files, and write changes on the
46remote host.55remote host.
47 56