我正在尝试使用本地服务器在智能手机上打开Web应用程序(仅适用于HTTPS)。因此,我使用了下面来自Stackoverflow答案的python代码来配置HTTPS服务器,并且能够从PC上打开Web应用程序。
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/
# generate server.xml with the following command:
# openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes
# run as follows:
# python simple-https-server.py
# then in your browser, visit:
# https://localhost:4443
import BaseHTTPServer, SimpleHTTPServer
import ssl
httpd = BaseHTTPServer.HTTPServer(('localhost', 4443), SimpleHTTPServer.SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket (httpd.socket, certfile='./server.pem', server_side=True)
httpd.serve_forever()
但是,当我尝试从智能手机或任何其他计算机访问Web应用程序时,出现此错误。 Screenshot
无法访问此网站 192.168.0.12花了很长时间才响应。 试试:
检查连接 检查代理和防火墙 ERR_TIMED_OUT
为什么会这样? 如何解决此错误并从智能手机打开Web应用?