python – 我得到一个错误400:错误的请求在自定义的Heroku域,但工作正常foo.herokuapp.com

前端之家收集整理的这篇文章主要介绍了python – 我得到一个错误400:错误的请求在自定义的Heroku域,但工作正常foo.herokuapp.com前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚把Django项目推送到Heroku.它工作正常在 http://rtd-staging.herokuapp.com/rtd2015/,但由于某些原因,我得到一个400错误:当我访问使用: http://staging.researchthroughdesign.org/rtd2015/错误请求

我知道CNAME设置正确,因为在推送到heroku的过程中,它表示Heroku应用程序已经崩溃,所以它肯定是指向正确的应用程序.

这是错误的日志:

2014-04-23T18:32:29.981976+00:00 heroku[router]: at=info method=GET path=/ host=staging.researchthroughdesign.org request_id=b8fe3ac9-e062-493b-b3bf-862c60e4001b fwd="82.34.146.252" dyno=web.1 connect=1ms service=7ms status=400 bytes=226

解决方法

您必须将您的网站域设置为允许的主机.将其放在您的settings.py中:
ALLOWED_HOSTS = [".herokuapp.com",".researchthroughdesign.org"]
原文链接:https://www.f2er.com/python/186551.html

猜你在找的Python相关文章