Add a .htaccess restricting access to localhost by default to the check and displaylog plugins, to avoid revealing sensitive information without knowing

This commit is contained in:
Loïc CORBASSON 2015-12-14 22:12:57 +01:00
parent d56e34f8f5
commit 56d6a2915c
2 changed files with 10 additions and 0 deletions

5
plugins/check/.htaccess Normal file
View File

@ -0,0 +1,5 @@
Order deny,allow
Deny from all
Allow from localhost
Allow from 127.0.0.1
Allow from ::1

View File

@ -0,0 +1,5 @@
Order deny,allow
Deny from all
Allow from localhost
Allow from 127.0.0.1
Allow from ::1