mirror of
https://github.com/django/django.git
synced 2025-07-25 14:14:13 +00:00
[3.1.x] Fixed #32176 -- Clarified filesystem cache docs.
Backport of a43e2f66d7
from master
This commit is contained in:
parent
cc3870c30f
commit
09dbae21c9
1 changed files with 6 additions and 5 deletions
|
@ -290,11 +290,12 @@ The directory path should be absolute -- that is, it should start at the root
|
||||||
of your filesystem. It doesn't matter whether you put a slash at the end of the
|
of your filesystem. It doesn't matter whether you put a slash at the end of the
|
||||||
setting.
|
setting.
|
||||||
|
|
||||||
Make sure the directory pointed-to by this setting exists and is readable and
|
Make sure the directory pointed-to by this setting either exists and is
|
||||||
writable by the system user under which your Web server runs. Continuing the
|
readable and writable, or that it can be created by the system user under which
|
||||||
above example, if your server runs as the user ``apache``, make sure the
|
your Web server runs. Continuing the above example, if your server runs as the
|
||||||
directory ``/var/tmp/django_cache`` exists and is readable and writable by the
|
user ``apache``, make sure the directory ``/var/tmp/django_cache`` exists and
|
||||||
user ``apache``.
|
is readable and writable by the user ``apache``, or that it can be created by
|
||||||
|
the user ``apache``.
|
||||||
|
|
||||||
.. _local-memory-caching:
|
.. _local-memory-caching:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue