Web-based SSH/Telnet client, useful in environments where only http(s) is allowed
Multiple Terminal Support
git clone https://github.com/maltsev25/juttycd juttynpm install --only=prod
node ./dist/app.js
Always use HTTPS! If you don't have SSL certificates from a CA you can create a self signed certificate using this command:
openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 30000 -nodes
And then run:
node ./dist/app.js
Put the following configuration in nginx's conf:
location /jutty {
proxy_pass http://127.0.0.1:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 43200000;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
}
Note that if your Nginx is configured for HTTPS you should run jutty without SSL.
place bin/jutty.service in /etc/systemd/system
systemctl enable jutty.service
systemctl start jutty.serviceForked from jutty
- hterm
- node-pty
- socket.io
- jquery
- bootstrap
- bootswatch darkly theme
- bootstrap file input
- store.js
- express
- body-parser
- compression
- cors
- typescript-logging
MIT
Copyright (c) 2020 Gleb
