commit bb1b934e690ae5cc52d5fdfeaaa8624a768b7538
parent 4532559f837a7cc0b8419237e45ccfe450adaf9d
Author: Malte Hellmeier <mhellmeier@users.noreply.github.com>
Date: Sun, 22 Aug 2021 15:47:45 +0200
Restrict access to log file
Fixes #17
Diffstat:
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/.htaccess b/.htaccess
@@ -1,4 +1,4 @@
-<Files .env>
- Order allow,deny
- Deny from all
-</Files>
-\ No newline at end of file
+<FilesMatch "\.(env|json)$">
+ Order allow,deny
+ Deny from all
+</FilesMatch>