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.

18 lines
502 B

# -*- coding: utf-8 -*-
"""
server
~~~~~~~~~~~~~~
tornado转换server的启动端口无需启动默认5000端口即可用如有nginx等可混合使用.
:copyright: 云南新八达科技有限公司.
:author: 李进才.
"""
from tornado.httpserver import HTTPServer
from tornado.wsgi import WSGIContainer
from web import app
from tornado.ioloop import IOLoop
s = HTTPServer(WSGIContainer(app))
s.listen(9900) # 监听 9900 端口
IOLoop.current().start()