我有一个在ubuntu上运行的烧瓶服务器。我想使用我的域名test.example.com访问服务器,而不必包括端口号。现在,我可以通过以下操作成功访问服务器https://test.example.com:80/但我不知道该怎么做https://test.example.com/
在flask_server.py:中
if __name__ == '__main__':
app.run(host=0.0.0.0, port=80, ssl_conext=context)
使用代理涉水,就像烧瓶网站前的基本NGinx服务器一样Nginx将在443端口部分使用HTTPS/Domain,并将查询转发到localhost:80 上的本地烧瓶服务器