diff options
| author | Carles Pina Estany <carles@pina.cat> | 2020-11-10 10:15:29 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-10 11:15:29 +0100 |
| commit | a43e2f66d76fddd791ff0b88361faba304447ff9 (patch) | |
| tree | 984575e575a6da496a68b4c61d5320ba01a106f5 | |
| parent | 1fd9b44a6b1bde29fb1f6746e007787505608974 (diff) | |
Fixed #32176 -- Clarified filesystem cache docs.
| -rw-r--r-- | docs/topics/cache.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt index 14a257b1f4..ce9a982a23 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -287,11 +287,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 setting. -Make sure the directory pointed-to by this setting exists and is readable and -writable by the system user under which your Web server runs. Continuing the -above example, if your server runs as the user ``apache``, make sure the -directory ``/var/tmp/django_cache`` exists and is readable and writable by the -user ``apache``. +Make sure the directory pointed-to by this setting either exists and is +readable and writable, or that it can be created by the system user under which +your Web server runs. Continuing the above example, if your server runs as the +user ``apache``, make sure the directory ``/var/tmp/django_cache`` exists and +is readable and writable by the user ``apache``, or that it can be created by +the user ``apache``. .. warning:: |
