Web SSH Terminal is a self-hosted application that offers secure SSH access directly from the browser. It features multi-session support, split panes for monitoring multiple servers, and a dual-pane SFTP file manager for seamless file transfers, making it ideal for server management and teams.
WebSSH is a modern, feature-rich web-based SSH terminal that facilitates secure server management directly from any web browser. It is ideal for homelabs, developers, and teams requiring seamless browser-based terminal access, combining SSH functionality with an integrated SFTP file manager.
/webssh, for flexibility in deployment.For those looking to quickly set up WebSSH, the recommended method is using Docker. Example command for Docker deployment:
# Generate a secure secret key
export SECRET_KEY=$(openssl rand -hex 32)
# Run with Docker
docker run -d \
--name webssh \
-p 5000:5000 \
-e SECRET_KEY=$SECRET_KEY \
-e CORS_ORIGINS=http://localhost:5000 \
-v webssh_data:/app/data \
--restart unless-stopped \
ghcr.io/bifrost0x/webssh:latest
After deployment, access the interface at http://localhost:5000 to create the first user account.
WebSSH combines intuitive design with robust security features, making it a comprehensive solution for anyone needing secure terminal access via a web browser. With its variety of features and customization options, WebSSH aims to enhance user productivity in server management.
No comments yet.
Sign in to be the first to comment.