gpt4 book ai didi

python - 无法在 web.py 中创建 ssl session - Python 2.7

转载 作者:太空宇宙 更新时间:2023-11-03 13:34:54 36 4
gpt4 key购买 nike

我正在尝试让我的服务器使用 https/ssl 连接。我有证书和 key 。我尝试使用 http://webpy.org/cookbook/ssl 中的示例但它仍然使用 http 而不是 https。我的 web.py 版本是最新的 (0.38),但我也尝试使用网站中提供的旧实现,这导致了错误:

Traceback (most recent call last):
File "/path/server.py", line 7, in <module>
from web.wsgiserver.ssl_builtin import BuiltinSSLAdapter
File "/Library/Python/2.7/site-packages/web/wsgiserver/ssl_builtin.py", line 14, in <module>
from cherrypy import wsgiserver
ImportError: cannot import name wsgiserver

行内:

from web.wsgiserver.ssl_builtin import BuiltinSSLAdapter

有什么解决办法吗? (我猜不是因为错误,因为它是由适合旧版本 web.py 的使用引起的,而是因为第一次实现)。

谢谢

编辑:我正在运行的代码:

import sys
import web
from web.wsgiserver import CherryPyWSGIServer

from utils.tools import Tools

from pages.index import index
from pages.search import search
from pages.update_location import update_location
from pages.add_sn_tracking import add_sn_tracking
from pages.edit_sn_tracking import edit_sn_tracking
from pages.add_sheet_tracking import add_sheet_tracking
from pages.edit_sheet_tracking import edit_sheet_tracking


class WebServer:
def __init__(self):
CherryPyWSGIServer.ssl_certificate = r"/Volumes/wlutils/Users/TesterUs/snserver/server.crt"
CherryPyWSGIServer.ssl_private_key = r"/Volumes/wlutils/Users/TesterUs/snserver/server.key"

self.urls = (
'/', 'index',
'/search', 'search',
'/update_location', 'update_location',
'/add_sn_tracking', 'add_sn_tracking',
'/edit_sn_tracking', 'edit_sn_tracking',
'/add_sheet_tracking', 'add_sheet_tracking',
'/edit_sheet_tracking', 'edit_sheet_tracking',
)
# web.config.debug = False
self.app = web.application(self.urls, globals())
self.app.run()

if __name__ == "__main__":
w = WebServer()

最佳答案

要为 SSL 设置 web.py,只需设置内部 CherryPyWSGIServer:

from web.wsgiserver import CherryPyWSGIServer
CherryPyWSGIServer.ssl_certificate = "/file/my.crt"
CherryPyWSGIServer.ssl_private_key = "/file/my.key"

在调用 app = web.application(urls, globals()) 之前执行此操作。如果这对您不起作用,让我们探讨一下,而不是您正在尝试的 v.0.38 之前的解决方案,已知不适用于当前的 web.py

跟进:似乎正在使用旧版本的 web.py。一旦将其更新为 0.38+,该示例就可以正常工作了。

关于python - 无法在 web.py 中创建 ssl session - Python 2.7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42887071/

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