gpt4 book ai didi

python-3.x - 如何制作 Bottle 服务器HTTPS python

转载 作者:行者123 更新时间:2023-12-04 12:18:46 26 4
gpt4 key购买 nike

我使用 Bottle 作为我的网络服务。目前,它运行在 Bottle 的默认 wsgi 服务器上并处理 HTTP 请求。我想加密我的网络服务并处理 HTTPS 请求。有人可以为此提出一种方法。我尝试在cherrypy 服务器上运行,但最新版本不支持pyOpenSSLAdapter。

最佳答案

如您所知,bottle 也支持 Gunicorn。您可以在以下位置找到 SSL 信息

  • https://docs.gunicorn.org/en/latest/settings.html?highlight=ssl#ssl

  • 代码示例
    import bottle
    from bottle import Bottle

    BASE = Bottle()


    @BASE.route('/', ['GET'])
    def index():
    return 'Index'


    bottle.run(
    app=BASE,
    host='0.0.0.0',
    port='8888',
    server='gunicorn',
    reloader=1,
    debug=1,
    keyfile='key.pem',
    certfile='cert.pem'
    )

    关于python-3.x - 如何制作 Bottle 服务器HTTPS python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44013107/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com