From bded17b2fcb7d91b45d91faac11d73a0383f0cd2 Mon Sep 17 00:00:00 2001 From: JKA Network Date: Tue, 31 Oct 2017 09:38:23 +0000 Subject: [PATCH] Update security --- security.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/security.md b/security.md index 93c714a..53e766e 100644 --- a/security.md +++ b/security.md @@ -11,10 +11,10 @@ For Apache there is the .htaccess file, that has all you need for avoiding user You have to add to your server directive of your page (in nginx.conf) deny to some files, like: ``` -location ^~ /sqlite.db3 { +location ^~ /sqlite\.db3 { deny all; } -location ^~ /cronchk.php { +location ^~ /cronchk\.php { deny all; } ```