mirror of https://github.com/huashengdun/webssh
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
import logging
|
|
import tornado.web
|
|
import tornado.ioloop
|
|
|
|
from tornado.options import parse_command_line, options
|
|
from handler import IndexHandler, WsockHandler
|
|
from settings import (get_app_settings, get_host_keys_settings,
|
|
get_policy_setting)
|
|
|
|
|
|
def make_app(loop, policy, host_keys_settings, app_settings):
|
|
handlers = [
|
|
(r'/', IndexHandler, dict(loop=loop, policy=policy,
|
|
host_keys_settings=host_keys_settings)),
|
|
(r'/ws', WsockHandler, dict(loop=loop))
|
|
]
|
|
|
|
app = tornado.web.Application(handlers, **app_settings)
|
|
return app
|
|
|
|
|
|
def main():
|
|
parse_command_line()
|
|
app_settings = get_app_settings(options)
|
|
host_keys_settings = get_host_keys_settings(options)
|
|
policy = get_policy_setting(options, host_keys_settings)
|
|
|
|
loop = tornado.ioloop.IOLoop.current()
|
|
app = make_app(loop, policy, host_keys_settings, app_settings)
|
|
app.listen(options.port, options.address)
|
|
logging.info('Listening on {}:{}'.format(options.address, options.port))
|
|
loop.start()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|