ALLOWED_HOSTS在部署到Elastic Beanstalk的Django应用程序中不起作用

时间:2019-03-30 17:20:06

标签: django amazon-web-services settings amazon-elastic-beanstalk

我将Django应用程序部署到AWS Elastic Beanstalk,即使将其添加到允许的主机设置中,我也收到“无效的HTTP_HOST标头”错误。

我收到此错误:

Invalid HTTP_HOST header: 'recordings-env.kf4qfzaijd.us-west-2.elasticbeanstalk.com'. You may need to add 'recordings-env.kf4qfzaijd.us-west-2.elasticbeanstalk.com' to ALLOWED_HOSTS.

这就是我的settings.py

settings.py

ALLOWED_HOSTS = [
    '127.0.0.1',
    'localhost',
    '.amazonaws.com',
    '.elasticbeanstalk.com',
    'recordings-env.kf4qfzaijd.us-west-2.elasticbeanstalk.com',
]

我认为问题是我的设置没有被更新,因为如果我输入ALLOWED_HOSTS = ['*']也不起作用。我离开了DEBUG = True,在请求信息中,我得到了:ALLOWED_HOSTS: ['localhost']

修改后,我没有错误地运行eb deploy。

2 个答案:

答案 0 :(得分:0)

这有点棘手,因为您需要使用EB动态声明ALLOWED_HOSTS。该article在Gotcha#3中提供了一些很好的信息,说明如何实现

我将创建一个名为settings_production.py的单独的设置文件,然后可以在其中放置以下代码:

mysite / settings_production.py

from mysite.settings import *


def is_ec2_linux():
    """Detect if we are running on an EC2 Linux Instance
       See http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/identify_ec2_instances.html
    """
    if os.path.isfile("/sys/hypervisor/uuid"):
        with open("/sys/hypervisor/uuid") as f:
            uuid = f.read()
            return uuid.startswith("ec2")
    return False


def get_linux_ec2_private_ip():
    """Get the private IP Address of the machine if running on an EC2 linux server"""
    from urllib.request import urlopen
    if not is_ec2_linux():
        return None
    try:
        response = urlopen('http://169.254.169.254/latest/meta-data/local-ipv4')
        return response.read().decode("utf-8")
    except:
        return None
    finally:
        if response:
            response.close()


# ElasticBeanstalk healthcheck sends requests with host header = internal ip
# So we detect if we are in elastic beanstalk,
# and add the instances private ip address
private_ip = get_linux_ec2_private_ip()
if private_ip:
    ALLOWED_HOSTS += [private_ip, 'your-django-env.elasticbeanstalk.com']

# Other production overrides
DEBUG = False


现在,将用于生产(即EB环境)的“ DJANGO_SETTINGS_MODULE”环境变量设置为mysite.production_settings

更新:

我决定将其用于测试旋转,并设法使其启动并运行。我发现了一些东西。上面的代码将每个实例的内部IP添加到ALLOWED_HOSTS。这纯粹是用于运行状况检查,以便AWS控制台可以在内部ping实例并接收200OK响应。我将离开上面的解决方案,因为它仍然可以用于该目的。它不会解决您的特定错误。要满足您的需要,只需添加您的EB网址,仅此而已。您可以在AWS控制台(下面以红色突出显示)或cli中找到它,方法是输入eb status并检查CNAME属性。

enter image description here

配置:

这是我在源代码中手动创建的基本配置文件:

.ebextensions / django.config


option_settings:
  aws:elasticbeanstalk:container:python:
    WSGIPath: mysite/wsgi.py
  aws:elasticbeanstalk:application:environment:
    DJANGO_SETTINGS_MODULE: mysite.settings_production

.ebextensions / db-migrate.config


container_commands:
  01_migrate:
    command: "django-admin.py migrate"
    leader_only: true
option_settings:
  aws:elasticbeanstalk:application:environment:
    DJANGO_SETTINGS_MODULE: mysite.settings_production

答案 1 :(得分:0)

我已经意识到我的变更没有被部署,因为我需要首先提交,而我却不知道(我第一次部署到eb)。所以,这就是问题所在。