server.py 文件源码

python
阅读 20 收藏 0 点赞 0 评论 0

项目:Content-Based-News-Recommendation-System-in-Spark 作者: Labyrinth108 项目源码 文件源码
def run_server(app):

    # Enable WSGI access logging via Paste
    app_logged = TransLogger(app)

    # Mount the WSGI callable object (app) on the root directory
    cherrypy.tree.graft(app_logged, '/')

    # Set the configuration of the web server
    cherrypy.config.update({
        'engine.autoreload.on': True,
        'log.screen': True,
        'server.socket_port': 5432,
        'server.socket_host': '0.0.0.0'
    })

    # Start the CherryPy WSGI web server
    cherrypy.engine.start()
    cherrypy.engine.block()
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号