带有heroku的django,无法将http重定向到https

时间:2018-06-22 19:05:47

标签: django heroku https

我已将一个应用程序部署到heroku。该应用程序使用djange,gunicorn。 我尝试使用以下设置将http重定向为https,但无效:

SESSION_COOKIE_SECURE = True
CSRF_COOKIE_SECURE = True
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
SECURE_SSL_REDIRECT = True
PREPEND_WWW = True
BASE_URL = "https://www.etherkar.com"
ALLOWED_HOSTS = ['www.etherkar.com', 'etherkar.com']

任何想法谢谢你

0 个答案:

没有答案