Added ALLOWED_HOSTS default setting required by Django 1.5.
This commit is contained in:
parent
cfc575f360
commit
3afee00064
1 changed files with 4 additions and 0 deletions
|
|
@ -40,6 +40,10 @@ TELNET_OOB_ENABLED = False # OBS - currently not fully implemented - do not use!
|
||||||
# (Obs - further web configuration can be found below
|
# (Obs - further web configuration can be found below
|
||||||
# in the section 'Config for Django web features')
|
# in the section 'Config for Django web features')
|
||||||
WEBSERVER_ENABLED = True
|
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
|
# A list of ports the Evennia webserver listens on
|
||||||
WEBSERVER_PORTS = [8000]
|
WEBSERVER_PORTS = [8000]
|
||||||
# Interface addresses to listen to. If 0.0.0.0, listen to all.
|
# Interface addresses to listen to. If 0.0.0.0, listen to all.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue