Discouraged use of /tmp with predictable names.

The use of predictable filenames in /tmp often leads to symlink attacks
so remove the most obvious use of them in the docs.
This commit is contained in:
Chris Lamb 2015-12-23 17:08:40 +00:00 committed by Tim Graham
parent a856555df2
commit 77b8d8cb6d
6 changed files with 7 additions and 7 deletions

View file

@ -95,7 +95,7 @@ Here's how this might look in a fabfile::
from fabric.contrib import project
# Where the static files get collected locally. Your STATIC_ROOT setting.
env.local_static_root = '/tmp/static'
env.local_static_root = '/path/to/static'
# Where the static files should go remotely
env.remote_static_root = '/home/www/static.example.com'