https://github.com/cplieger/web-terminal-server
Generic web terminal: runs a command in a PTY, serves a touch-first browser UI
https://github.com/cplieger/web-terminal-server
golang pty terminal web-terminal websocket
Last synced: 2 days ago
JSON representation
Generic web terminal: runs a command in a PTY, serves a touch-first browser UI
- Host: GitHub
- URL: https://github.com/cplieger/web-terminal-server
- Owner: cplieger
- License: gpl-3.0
- Created: 2026-06-29T12:33:52.000Z (8 days ago)
- Default Branch: main
- Last Pushed: 2026-06-29T14:27:45.000Z (8 days ago)
- Last Synced: 2026-06-29T15:23:30.987Z (8 days ago)
- Topics: golang, pty, terminal, web-terminal, websocket
- Language: Go
- Size: 46.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# web-terminal-server
[](https://github.com/cplieger/web-terminal-server/pkgs/container/web-terminal-server)


[](https://github.com/cplieger/web-terminal-server/actions/workflows/coverage.yml)
[](https://www.bestpractices.dev/projects/13432)
[](https://scorecard.dev/viewer/?uri=github.com/cplieger/web-terminal-server)
[](https://github.com/cplieger/web-terminal-server/releases)
A small, generic web terminal: it runs a configured command in a PTY and serves
the [`@cplieger/web-terminal-ui`](https://github.com/cplieger/web-terminal-ui)
front end over HTTP + WebSocket, built on the
[`github.com/cplieger/web-terminal-engine`](https://github.com/cplieger/web-terminal-engine)
engine. A native-touch terminal in the browser for any command — phone and
desktop alike.
Published as a container image: `ghcr.io/cplieger/web-terminal-server`.
## ⚠️ Security: this is a remote shell
Anyone who can reach the server **and pass auth (if configured)** gets an
interactive process running `WT_CMD` with this server's privileges. Treat it
like exposing SSH.
- **The binary binds `127.0.0.1` by default.** Reachable only from the same
host until you change `WT_ADDR`.
- **The container image binds `:7681`** (it has to, to be reachable via a
published port) and so is **unauthenticated and network-exposed by default**.
Before exposing it beyond a trusted host, do **one** of:
- set `WT_PASSWORD` (enables HTTP Basic auth on every route, including the
WebSocket handshake), and/or
- front it with an authenticating reverse proxy (Caddy + forward-auth,
oauth2-proxy, Authentik, …), and/or
- keep the published port bound to loopback / a private network only.
- The server logs a loud warning at startup when it is listening on a
non-loopback address without `WT_PASSWORD` set.
Built-in Basic auth is a convenience for simple setups; a reverse proxy with
real identity is the recommended posture for anything internet-facing. The
process runs as the container user (root by default) — restrict it with a
non-root `WT_CMD` target, a read-only root filesystem, dropped capabilities,
and a scoped work directory as your threat model requires.
## Run
```sh
docker run --rm -p 127.0.0.1:7681:7681 \
-e WT_PASSWORD=changeme \
-v "$PWD":/work -e WT_WORKDIR=/work \
ghcr.io/cplieger/web-terminal-server
```
Open . The example binds the published port to loopback
and sets a password; adjust for your environment.
## Configuration
All configuration is via environment variables:
| Variable | Default (binary / image) | Purpose |
| --- | --- | --- |
| `WT_ADDR` | `127.0.0.1:7681` / `:7681` | Listen address. The binary defaults to loopback; the image must listen on all interfaces. |
| `WT_CMD` | `/bin/bash` | Command to run in the PTY, whitespace-split (use a wrapper script for complex commands). |
| `WT_WORKDIR` | _(process default)_ | Working directory for the command. Must be an existing directory if set. |
| `WT_SCROLLBACK` | `5000` | Lines of scrollback the server retains for reconnect replay. |
| `WT_IDLE_REAPER` | _(unset → disabled)_ | Go duration (e.g. `30m`); when > 0, idle sessions are reaped after this long. |
| `WT_USERNAME` | `admin` | Basic-auth username (only used when `WT_PASSWORD` is set). |
| `WT_PASSWORD` | _(unset → no auth)_ | Basic-auth password. When set, every route (including `/ws`) requires it. |
Endpoints: `/` (UI), `/ws?session=` (per-session terminal WebSocket), `/api/sessions` (create/list/close), `/api/sessions/events` (status SSE), `/healthz` (readiness).
## How it fits together
```
github.com/cplieger/web-terminal-engine (Go engine: PTY + VT screen + wire protocol)
│
├── terminal.NewSessionManager ─────► this server (main.go)
│
@cplieger/web-terminal-engine + @cplieger/web-terminal-ui (TS engine + UI)
└── compiled to static/vendor/ at image build, served to the browser
```
The server is deliberately thin: env parsing, `terminal.NewSessionManager`, the
session REST API + status SSE, a create rate limit, static file serving, optional
Basic auth, and graceful shutdown. All terminal behavior lives in the engine and
UI packages.
## Related projects
The web-terminal family:
- [`web-terminal-engine`](https://github.com/cplieger/web-terminal-engine) — the
Go session engine + TypeScript browser renderer this server embeds.
- [`@cplieger/web-terminal-ui`](https://github.com/cplieger/web-terminal-ui) —
the touch-first browser UI this server ships to the client.
Apps built on the same engine:
- [`vibekit`](https://github.com/cplieger/vibekit)
- [`vibecli`](https://github.com/cplieger/vibecli)
## Disclaimer
This project is built with care and follows security best practices, but it is intended for personal / self-hosted use. No guarantees of fitness for production environments. Use at your own risk.
This project was built with AI-assisted tooling using [Claude Opus](https://www.anthropic.com/claude) and [Kiro](https://kiro.dev). The human maintainer defines architecture, supervises implementation, and makes all final decisions.
## License
GPL-3.0-or-later. See `LICENSE`.