From 3afee000643868d6393f8fb6585215af9b27e21e Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 25 Mar 2013 19:44:37 +0100 Subject: [PATCH] Added ALLOWED_HOSTS default setting required by Django 1.5. --- src/settings_default.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/settings_default.py b/src/settings_default.py index 59fe25a79..674b4683a 100644 --- a/src/settings_default.py +++ b/src/settings_default.py @@ -40,6 +40,10 @@ TELNET_OOB_ENABLED = False # OBS - currently not fully implemented - do not use! # (Obs - further web configuration can be found below # in the section 'Config for Django web features') WEBSERVER_ENABLED = True +# This is a security setting protecting against host poisoning +# attacks. It defaults to allowing all. In production, make +# sure to change this to your actual host addresses/IPs. +ALLOWED_HOSTS = ["*"] # A list of ports the Evennia webserver listens on WEBSERVER_PORTS = [8000] # Interface addresses to listen to. If 0.0.0.0, listen to all.