We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e057c8a commit 6085423Copy full SHA for 6085423
1 file changed
rootfs/deis/settings.py
@@ -11,10 +11,17 @@
11
12
PROJECT_ROOT = os.path.normpath(os.path.join(os.path.dirname(__file__), '..'))
13
14
+# A boolean that turns on/off debug mode.
15
+# https://docs.djangoproject.com/en/1.9/ref/settings/#debug
16
DEBUG = False
17
18
+# If set to True, Django's normal exception handling of view functions
19
+# will be suppressed, and exceptions will propagate upwards
20
+# https://docs.djangoproject.com/en/1.9/ref/settings/#debug-propagate-exceptions
21
+DEBUG_PROPAGATE_EXCEPTIONS = False
22
+
23
# Silence two security messages around SSL as router takes care of them
-# https://docs.djangoproject.com/es/1.9/ref/checks/#security
24
+# https://docs.djangoproject.com/en/1.9/ref/checks/#security
25
SILENCED_SYSTEM_CHECKS = [
26
'security.W004',
27
'security.W008'
0 commit comments