summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial03.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-06-09 15:05:15 -0400
committerTim Graham <timograham@gmail.com>2013-06-09 15:05:15 -0400
commit4e94c84e50b960405d5708d8d9528c44c7dabe83 (patch)
tree51139dcd674f66ddff3a9c8ef52e21b5ebd12f06 /docs/intro/tutorial03.txt
parent175a102ddceae2ebd1a4e03916a23adafc35bda5 (diff)
Fixed #19875 - Added warnings regarding DEBUG=False and empty ALLOWED_HOSTS
Diffstat (limited to 'docs/intro/tutorial03.txt')
-rw-r--r--docs/intro/tutorial03.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index 120369172e..6193ec45f7 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -473,6 +473,13 @@ template for all 404 errors when :setting:`DEBUG` is set to ``False`` (in your
settings module). If you do create the template, add at least some dummy
content like "Page not found".
+.. warning::
+
+ If :setting:`DEBUG` is set to ``False``, all responses will be
+ "Bad Request (400)" unless you specify the proper :setting:`ALLOWED_HOSTS`
+ as well (something like ``['localhost', '127.0.0.1']`` for
+ local development).
+
A couple more things to note about 404 views:
* If :setting:`DEBUG` is set to ``True`` (in your settings module) then your