获取Python的Heroku示例应用程序的问题在本地使用SSL运行

PEZ*_*PEZ 6 python openssl facebook heroku virtualenv

我开始遇到与此问题相同的问题.正如其中一个答案所示,通过使应用程序在没有SSL的情况下运行,可以避免该特定问题.但由于Facebook将在短短几天(2011年10月1日)内为应用程序强制执行https,这似乎是一种不会持久的解决方案.我首先尝试在app.run中启用ssl(在第149行附近exampleapp.py.像这样:

app.run(host='0.0.0.0', port=port, ssl_context='adhoc')
Run Code Online (Sandbox Code Playgroud)

首先尝试失败,开始抱怨丢失的OpenSSL模块.找到了一些关于如何在网上修复它的建议,并选择:

(myapp)$ pip install pyopenssl
Run Code Online (Sandbox Code Playgroud)

现在没有投诉:

(myapp)$ foreman start
10:35:25 web.1     | started with pid 26934
10:35:26 web.1     |  * Running on https://0.0.0.0:5000/
10:35:26 web.1     |  * Restarting with reloader
Run Code Online (Sandbox Code Playgroud)

但是在尝试访问应用时:

10:35:31 web.1     | ----------------------------------------
10:35:31 web.1     | Exception happened during processing of request from ('127.0.0.1', 61118)
10:35:31 web.1     | Traceback (most recent call last):
10:35:31 web.1     |   File "/usr/local/Cellar/python/2.7.1/lib/python2.7/SocketServer.py", line 284, in _handle_request_noblock
10:35:31 web.1     |     self.process_request(request, client_address)
10:35:31 web.1     |   File "/usr/local/Cellar/python/2.7.1/lib/python2.7/SocketServer.py", line 310, in process_request
10:35:31 web.1     |     self.finish_request(request, client_address)
10:35:31 web.1     |   File "/usr/local/Cellar/python/2.7.1/lib/python2.7/SocketServer.py", line 323, in finish_request
10:35:31 web.1     |     self.RequestHandlerClass(request, client_address, self)
10:35:31 web.1     |   File "/usr/local/Cellar/python/2.7.1/lib/python2.7/SocketServer.py", line 639, in __init__
10:35:31 web.1     |     self.handle()
10:35:31 web.1     |   File "path_to_myapp/lib/python2.7/site-packages/werkzeug/serving.py", line 189, in handle
10:35:31 web.1     |     return rv
10:35:31 web.1     | UnboundLocalError: local variable 'rv' referenced before assignment
10:35:31 web.1     | ----------------------------------------
10:35:31 web.1     | Unhandled exception in thread started by <function inner at 0x10139e050>
10:35:31 web.1     | Traceback (most recent call last):
10:35:31 web.1     |   File "path_to_myapp/lib/python2.7/site-packages/werkzeug/serving.py", line 599, in inner
10:35:31 web.1     |     passthrough_errors, ssl_context).serve_forever()
10:35:31 web.1     |   File "path_to_myapp/lib/python2.7/site-packages/werkzeug/serving.py", line 355, in serve_forever
10:35:31 web.1     |     HTTPServer.serve_forever(self)
10:35:31 web.1     |   File "/usr/local/Cellar/python/2.7.1/lib/python2.7/SocketServer.py", line 227, in serve_forever
10:35:31 web.1     |     self._handle_request_noblock()
10:35:31 web.1     |   File "/usr/local/Cellar/python/2.7.1/lib/python2.7/SocketServer.py", line 287, in _handle_request_noblock
10:35:31 web.1     |     self.shutdown_request(request)
10:35:31 web.1     |   File "/usr/local/Cellar/python/2.7.1/lib/python2.7/SocketServer.py", line 459, in shutdown_request
10:35:31 web.1     |     request.shutdown(socket.SHUT_WR)
10:35:31 web.1     | TypeError: shutdown() takes exactly 0 arguments (1 given)
Run Code Online (Sandbox Code Playgroud)

该怎么办?它是错误的Python版本还是只是我误解了其他一些基本的东西?

Tar*_*mán 1

这是 Werkzeug 中的一个错误,已修复

将requirements.txt文件中的Werkzeug版本更改为至少0.8.2并运行pip install -r requirements.txt升级。