README.md
July 18, 2026 ยท View on GitHub
๐ค What is Nexterm?
Nexterm is an open-source server management software that allows you to:
- Connect remotely via SSH, VNC and RDP
- Manage files through SFTP
- Deploy applications via Docker
- Manage Proxmox LXC and QEMU containers
- Secure access with two-factor authentication and OIDC SSO
- Separate users and servers into Organizations
๐ท Screenshots
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
๐ Install
You can install Nexterm by clicking here.
๐ป Development
Prerequisites
- Node.js 18+
- Yarn
- FlatBuffers compiler (
flatc) - Docker (optional)
Install FlatBuffers:
| Platform | Command |
|---|---|
| macOS | brew install flatbuffers |
| Ubuntu / Debian | sudo apt install flatbuffers-compiler |
| Windows | winget install Google.FlatBuffers |
Local Setup
Clone the repository
git clone https://github.com/gnmyt/Nexterm.git
cd Nexterm
Configure environment
Create a local environment file:
cp .env.example .env
Make sure ENCRYPTION_KEY is set in .env.
You can generate a secure key using:
| Platform | Command |
|---|---|
| macOS / Linux | openssl rand -hex 32 |
Install dependencies
yarn install
cd client && yarn install
cd ..
Generate FlatBuffers schemas
yarn schema:generate
This step is required before starting the development server.
Start development mode
yarn dev
Start an engine
The development server does not automatically start an engine. To connect to servers, an engine must be running separately:
yarn dev:engine
If using local engine registration, set LOCAL_ENGINE_TOKEN in the server environment and use the same value as REGISTRATION_TOKEN for the engine.
๐ง Configuration
Docker Images
| Image | Description |
|---|---|
nexterm/aio | All-In-One โ server, client, and engine bundled together |
nexterm/server | Server + web client only (requires external engine) |
nexterm/engine | Engine only |
The server listens on port 6989 by default. You can modify this behavior using environment variables:
SERVER_PORT: Server listening port (default: 6989)CONTROL_PLANE_PORT: TCP port for engine communication (default: 7800)NODE_ENV: Runtime environment (development/production)ENCRYPTION_KEY: Encryption key for passwords, SSH keys and passphrases. Supports Docker secrets via /run/secrets/encryption_key`AI_SYSTEM_PROMPT: Extra instructions appended to the AI assistant's system prompt (example: Always explain destructive commands before running them.)LOG_LEVEL: Logging level for application and engine (system/info/verbose/debug/warn/error, default: system)TRUST_PROXY: Number of reverse proxies in front of Nexterm, so logs and audits show the real client IP instead of the proxy's (default: disabled). Use1for a single Nginx/Traefik, or pass trusted addresses (10.10.10.10,192.168.0.0/16). Only enable this if your proxy setsX-Forwarded-For, otherwise clients can spoof their IP.
๐ก๏ธ Security
- Two-factor authentication
- Session management
- Password encryption
- Docker container isolation
- Oauth 2.0 OpenID Connect SSO
๐ค Contributing
Contributions are welcome! Please feel free to:
- Fork the project
- Create a feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
๐ Useful Links
๐ Powered by
๐ License
Distributed under the MIT license. See LICENSE for more information.





