summaryrefslogtreecommitdiff
path: root/SecuringCacheDirectories.md
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2016-05-13 10:54:07 +0300
committerAndrew Dolgov <[email protected]>2016-05-13 10:54:07 +0300
commit133dc8976b1d68ed644cef6a3a29da03ab2f6f52 (patch)
treeb3ad0a563c98599f0e2382b64426234fb89b0977 /SecuringCacheDirectories.md
parentfd78b502149641de5899bbd8c7f4df77f75db863 (diff)
fox created page: SecuringCacheDirectories
Diffstat (limited to 'SecuringCacheDirectories.md')
-rw-r--r--SecuringCacheDirectories.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/SecuringCacheDirectories.md b/SecuringCacheDirectories.md
index bf3ad76..271594a 100644
--- a/SecuringCacheDirectories.md
+++ b/SecuringCacheDirectories.md
@@ -3,12 +3,18 @@ Securing Cache Directories
While nothing critical is stored in cache directories by tt-rss nor do files have easily guessable names, you may consider forbidding external access over HTTP to these directories anyway. This is not required, however.
+You may also consider restricting access to <code>config.php</code>.
+
## Using nginx
location /tt-rss/cache {
deny all;
}
+ location = /tt-rss/config.php {
+ deny all;
+ }
+
## Using apache (2.4 syntax)
<Location /tt-rss/cache>