mirror of https://github.com/huashengdun/webssh
parent
169286586f
commit
d38453fd0b
|
@ -17,7 +17,7 @@ A simple web application to be used as an ssh client to connect to your ssh serv
|
||||||
* Fullscreen terminal supported.
|
* Fullscreen terminal supported.
|
||||||
* Terminal window resizable.
|
* Terminal window resizable.
|
||||||
* Auto detect system default encoding.
|
* Auto detect system default encoding.
|
||||||
* Compatible with Python 2.7-3.6.
|
* Compatible with Python 2.7-3.7.
|
||||||
|
|
||||||
### Instructions
|
### Instructions
|
||||||
```
|
```
|
||||||
|
@ -27,13 +27,13 @@ wssh
|
||||||
|
|
||||||
### Options
|
### Options
|
||||||
```
|
```
|
||||||
# configure listen address and port
|
# listen address and port
|
||||||
wssh --address='0.0.0.0' --port=8000
|
wssh --address='0.0.0.0' --port=8000
|
||||||
|
|
||||||
# configure missing host key policy
|
# missing host key policy
|
||||||
wssh --policy=reject
|
wssh --policy=reject
|
||||||
|
|
||||||
# configure logging level
|
# logging level
|
||||||
wssh --logging=debug
|
wssh --logging=debug
|
||||||
|
|
||||||
# log to file
|
# log to file
|
||||||
|
|
|
@ -21,7 +21,7 @@ Features
|
||||||
- Fullscreen terminal supported.
|
- Fullscreen terminal supported.
|
||||||
- Terminal window resizable.
|
- Terminal window resizable.
|
||||||
- Auto detect system default encoding.
|
- Auto detect system default encoding.
|
||||||
- Compatible with Python 2.7-3.6.
|
- Compatible with Python 2.7-3.7.
|
||||||
|
|
||||||
Instructions
|
Instructions
|
||||||
~~~~~~~~~~~~
|
~~~~~~~~~~~~
|
||||||
|
@ -36,13 +36,13 @@ Options
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
# configure listen address and port
|
# listen address and port
|
||||||
wssh --address='0.0.0.0' --port=8000
|
wssh --address='0.0.0.0' --port=8000
|
||||||
|
|
||||||
# configure missing host key policy
|
# missing host key policy
|
||||||
wssh --policy=reject
|
wssh --policy=reject
|
||||||
|
|
||||||
# configure logging level
|
# logging level
|
||||||
wssh --logging=debug
|
wssh --logging=debug
|
||||||
|
|
||||||
# log to file
|
# log to file
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -30,6 +30,7 @@ setup(
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
],
|
],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'tornado>=4.5.0',
|
'tornado>=4.5.0',
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
__version_info__ = (0, 2, 5)
|
__version_info__ = (0, 2, 6)
|
||||||
__version__ = '.'.join(map(str, __version_info__))
|
__version__ = '.'.join(map(str, __version_info__))
|
||||||
|
|
Loading…
Reference in New Issue