Skip to content
Snippets Groups Projects
Unverified Commit 0f81a25c authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

use better config variable for http allowed_hosts.

parent 1d76e155
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ SECRET_KEY = _settings.get('secret_key', 'DoNotUseInProduction')
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = _settings.get('debug', False)
ALLOWED_HOSTS = _settings.get('http_hosts', [])
ALLOWED_HOSTS = _settings.get('http.allowed_hosts', [])
# Application definition
INSTALLED_APPS = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment