我刚把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"]