1 Star 0 Fork 35

德古拉/openssh

forked from Jack/openssh 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
Jack 提交于 2017-02-03 16:03 . 增加异步代码
__author__ = 'JackSong'
import sys
import os.path
import tornado.ioloop
import tornado.web
import tornado.httpserver
import tornado.options
import logging
import logging.handlers
from tornado.options import options
from config import init_config
from urls import handlers
from ioloop import IOloop
reload(sys)
sys.setdefaultencoding('utf-8')
settings = dict(
template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "static"),
)
class Application(tornado.web.Application):
def __init__(self):
tornado.web.Application.__init__(self, handlers, **settings)
def main():
init_config()
options.parse_config_file("openssh.conf")
options.parse_command_line()
http_server = tornado.httpserver.HTTPServer(Application())
http_server.listen(options.port)
IOloop.instance()
logger = logging.getLogger()
timelog = logging.handlers.TimedRotatingFileHandler(options.log_file_prefix)
logger.addHandler(timelog)
print('Server Starting port on %s' % (options.port,))
tornado.ioloop.IOLoop.instance().start()
if __name__ == "__main__":
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/voyllente/openssh.git
git@gitee.com:voyllente/openssh.git
voyllente
openssh
openssh
master

搜索帮助