mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-16 10:05:18 +00:00
Remove useless ALLOWED_HOSTS values
The port number is not included in the hostname when checking the list of allowed values. We also add the "lms"/"cms" values for interaction with the API from within the internal docker network.
This commit is contained in:
parent
90650b691a
commit
45a573d8e5
@ -7,13 +7,10 @@ execfile(os.path.join(os.path.dirname(__file__), "common.py"), globals())
|
||||
|
||||
ALLOWED_HOSTS = [
|
||||
ENV_TOKENS.get("CMS_BASE"),
|
||||
"cms",
|
||||
"127.0.0.1",
|
||||
"localhost",
|
||||
"studio.localhost",
|
||||
"127.0.0.1:8000",
|
||||
"localhost:8000",
|
||||
"127.0.0.1:8001",
|
||||
"localhost:8001",
|
||||
]
|
||||
|
||||
DEFAULT_FROM_EMAIL = ENV_TOKENS["CONTACT_EMAIL"]
|
||||
|
@ -8,12 +8,10 @@ execfile(os.path.join(os.path.dirname(__file__), "common.py"), globals())
|
||||
ALLOWED_HOSTS = [
|
||||
ENV_TOKENS.get("LMS_BASE"),
|
||||
FEATURES["PREVIEW_LMS_BASE"],
|
||||
"lms",
|
||||
"127.0.0.1",
|
||||
"localhost",
|
||||
"preview.localhost",
|
||||
"127.0.0.1:8000",
|
||||
"localhost:8000",
|
||||
"preview.localhost:8000",
|
||||
]
|
||||
|
||||
# Required to display all courses on start page
|
||||
|
Loading…
Reference in New Issue
Block a user