We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dueros程序模拟测试没有任何问题,但是在发布上线的时候提示所使用的网站不支持https和Head处理,请问大神有没有上线过应用啊,这个问题是咋解决的呢,谢谢
The text was updated successfully, but these errors were encountered:
给自己的域名配置https
Sorry, something went wrong.
添加HTTP HEAD请求处理
def option(self, request, *args, **kwargs): return Response(status=200) def head(self, request, *args, **kwargs): return Response(status=204) def get(self, request, *args, **kwargs): return Response(status=200)
去百度买个证书,免费😄,再配置下Nginx等Web服务器就可以了
No branches or pull requests
dueros程序模拟测试没有任何问题,但是在发布上线的时候提示所使用的网站不支持https和Head处理,请问大神有没有上线过应用啊,这个问题是咋解决的呢,谢谢
The text was updated successfully, but these errors were encountered: