diff options
author | Stefan Ritter <xeno@thehappy.de> | 2010-03-04 16:20:23 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2010-03-04 16:20:23 +0100 |
commit | a5d0c8d7bd403ec18850256e18c24a95eec276e6 (patch) | |
tree | c55fc35b1db8115c2640b51b9eb5f9db9d3a291c | |
parent | d6eb14bda521a26694589546c3ca7cad0b315f13 (diff) |
Added htaccess to forbid access to configuration
-rw-r--r-- | .htaccess | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..dd3e2fa --- /dev/null +++ b/.htaccess @@ -0,0 +1,14 @@ +<Files ~ "^configuration$"> +Order allow,deny +Deny from all +</Files> + +<Files ~ "^\.blogthonrc$"> +Order allow,deny +Deny from all +</Files> + +<Files ~ "^blogthonrc$"> +Order allow,deny +Deny from all +</Files> |