diff options
| author | Ben Longden <blongden@inviqa.com> | 2012-12-13 13:20:47 +0000 |
|---|---|---|
| committer | Ben Longden <blongden@inviqa.com> | 2012-12-13 13:20:47 +0000 |
| commit | 55a2d5b577bcf988d33ca4c8decfae6e96f58c7b (patch) | |
| tree | e8c8c8d3151d5db910ed1d70505d782c10d033d8 /docs/intro/tutorial01.txt | |
| parent | 7eba5fbc027face8dd33475148d442655a92cecd (diff) | |
Removes PHP references
Diffstat (limited to 'docs/intro/tutorial01.txt')
| -rw-r--r-- | docs/intro/tutorial01.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index 9913b21e13..686cb5220c 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -81,12 +81,12 @@ work, see :doc:`Troubleshooting </faq/troubleshooting>`. .. admonition:: Where should this code live? - If your background is in PHP, you're probably used to putting code under the - Web server's document root (in a place such as ``/var/www``). With Django, - you don't do that. It's not a good idea to put any of this Python code - within your Web server's document root, because it risks the possibility - that people may be able to view your code over the Web. That's not good for - security. + If your background is in plain old PHP (with no use of modern frameworks), + you're probably used to putting code under the Web server's document root + (in a place such as ``/var/www``). With Django, you don't do that. It's + not a good idea to put any of this Python code within your Web server's + document root, because it risks the possibility that people may be able + to view your code over the Web. That's not good for security. Put your code in some directory **outside** of the document root, such as :file:`/home/mycode`. |
