ownDynDNS - Self-hosted dynamic DNS php script for Speedport Smart 4 and netcup DNS API

git clone git://git.bcharge.de/ownDynDNS.git

About | Log | Files | Refs | License

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:
M.htaccess | 9++++-----
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>