gpt4 book ai didi

python - 为什么 Flask 会产生 ERR_CONNECTION_RESET?

转载 作者:行者123 更新时间:2023-12-04 22:41:28 49 4
gpt4 key购买 nike

服务器上的 Python 代码:

from flask import *
from flask_cors import CORS

app = Flask(__name__)
CORS(app)

@app.route('/')
def index():
return Response('Index')
if __name__ == '__main__':
app.run(debug=True, host='***.***.***.***', port=80, ssl_context=('certificates/cert.pem', 'certificates/key.pem'))

cert.pem 和 key.pem 文件是使用以下方法生成的:

openssl req -x509 -newkey rsa:4096 -nodes -out cert.pem -keyout key.pem -days 365

和可用的教程 here他们将很快使用 certbot 进行更新。

我也试过用 curl检查输出使用: curl -i https://***.***.***.***:80 -k >> CurlOutput.txt但文件是空的。

有没有办法在 certbot 的证书准备好之前保留当前证书并解决连接问题?

最佳答案

您正在使用端口 80 来提供 SSL。使用发往 HTTPS 的端口 443。有同样的错误,这为我解决了。
所以只需将最后一行更改为:

if __name__ == '__main__':

app.run(debug=True, host='***.***.***.***', port=443, ssl_context=('certificates/cert.pem', 'certificates/key.pem'))

关于python - 为什么 Flask 会产生 ERR_CONNECTION_RESET?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57402743/

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