Aleksander Machniak
2014-01-16 1fd6c43e192f3e67547dd7d12be69a1e98aa06fd
.htaccess
@@ -26,18 +26,16 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^favicon\.ico$ skins/larry/images/favicon.ico
# security rules
RewriteRule \.git - [F]
RewriteRule ^/?(README(.md)?|INSTALL|LICENSE|CHANGELOG|UPGRADING)$ - [NC,F]
RewriteRule ^/?(SQL|bin) - [NC,F]
</IfModule>
# deny access to all files not containing a "." (dot)
# to block access to different README, ChangeLog, etc. files
# of various skins and plugins.
<FilesMatch "^[^\.]+$">
Deny from all
</FilesMatch>
# security rules:
# - deny access to files not containing a dot or starting with a dot
#   in all locations except installer directory
RewriteRule ^(?!installer)(\.?[^\.]+)$ - [F]
# - deny access to some locations
RewriteRule ^/?(\.git|\.tx|SQL|bin|config|logs|temp|tests|program\/(include|lib|localization|steps)) - [F]
# - deny access to some documentation files
RewriteRule /?(README\.md|composer\.json-dist|composer\.json|package\.xml)$ - [F]
</IfModule>
<IfModule mod_deflate.c>
SetOutputFilter DEFLATE