summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2009-01-09 14:35:23 +0000
committerthomascube <thomas@roundcube.net>2009-01-09 14:35:23 +0000
commit64c52c63ad42301ece004f51c1dc6abc4c84ce97 (patch)
treec210e491946b0ef2cb0b72eaea1d556fe9f5cb27 /.htaccess
parentb7a754c44e5cd5b9b4126145e33f2bdaa149ebbb (diff)
Deny access to .sh files
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess2
1 files changed, 1 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess
index fcb8f6c8f..7c6b65bf4 100644
--- a/.htaccess
+++ b/.htaccess
@@ -23,7 +23,7 @@ php_value session.gc_probability 1
php_value mbstring.func_overload 0
</IfModule>
-<FilesMatch "(\.inc|\~)$">
+<FilesMatch "(\.inc|.sh|\~)$">
Order allow,deny
Deny from all
</FilesMatch>