webssh

Web based ssh client https://github.com/huashengdun/webssh webssh.huashengdun.org/
git clone http://git.hanabi.in/repos/webssh.git
Log | Files | Refs | README | LICENSE

commit 1508e055f6f6be00ed6b1545b24d173708f67143
parent d817f81b38866507e94361e404e89866abbce3a0
Author: Sheng <webmaster0115@gmail.com>
Date:   Mon, 26 Feb 2018 08:08:15 +0800

Updated README.md

Diffstat:
MREADME.md | 34+++++++++++++++-------------------
1 file changed, 15 insertions(+), 19 deletions(-)

diff --git a/README.md b/README.md @@ -13,32 +13,28 @@ A simple web application to be used as an ssh client to connect to your ssh serv * Terminal window resizable. * Compatible with Python 2.7-3.6. -### Install dependencies +### Instructions ``` -$ pip install -r requirements.txt +git clone https://github.com/huashengdun/webssh.git +cd webssh +pip install -r requirements.txt +python main.py ``` -### Run - +### Options ``` -// default listen on 127.0.0.1:8888 -$ python main.py - -// change listen address and port -$ python main.py --address='0.0.0.0' --port=8000 - -// change logging level -$ python main.py --logging=debug +# configure listen address and port +python main.py --address='0.0.0.0' --port=8000 -// log to file -$ python main.py --log-file-prefix=main.log -``` +# configure logging level +python main.py --logging=debug -### Help +# log to file +python main.py --log-file-prefix=main.log -``` -$ python main.py --help -``` +# more options +python main.py --help +``````` ### Nginx config example for running this app behind an nginx server ```