diff options
| author | Rik <gitaarik@gmail.com> | 2014-02-22 13:07:50 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-02-25 11:21:29 -0500 |
| commit | dde67de0f656014821942ee8abe50f5187924288 (patch) | |
| tree | 7baf12b47288c1fd5325030f71c4e84e760f6cfd | |
| parent | 985d0865a3cfb5850f926dfd9742fa7a9ca88bdc (diff) | |
[1.6.x] Fixed #12670 -- Added a note about permissions of files stored in FILE_UPLOAD_TEMP_DIR.
Thanks simon29 for the suggestion.
Backport of 355572ac56 from master
| -rw-r--r-- | docs/topics/http/file-uploads.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt index 211ffa1e5a..58e16be42c 100644 --- a/docs/topics/http/file-uploads.txt +++ b/docs/topics/http/file-uploads.txt @@ -164,6 +164,9 @@ Three settings control Django's file upload behavior: of ``0600``, and files saved from memory will be saved using the system's standard umask. + For security reasons, these permissions aren't applied to the temporary + files that are stored in :setting:`FILE_UPLOAD_TEMP_DIR`. + .. warning:: If you're not familiar with file modes, please note that the leading |
