]> git.mxchange.org Git - friendica.git/commitdiff
.htaccess-dist deny access to some backup files
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Wed, 16 Mar 2022 18:35:59 +0000 (19:35 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Wed, 16 Mar 2022 18:35:59 +0000 (19:35 +0100)
this PR adds a filematch block to the distributed .htaccess file to deny access to backup files from emacs (~), vim (.swp) and other backup files (.bak).

addressing #11350

.htaccess-dist

index 3c90982515ded7962aa0b4598ad381b6c55837c6..c86b81b889d128cc321978f8f90643d2bfef2d3f 100644 (file)
@@ -6,6 +6,7 @@ AddType application/x-java-archive .jar
 AddType audio/ogg .oga
 #AddHandler php53-cgi .php
 
+# deny access to log files (friendica.log or php.out)
 <FilesMatch "\.(out|log)$">
   <IfModule authz_host_module>
     #Apache 2.4
@@ -17,6 +18,18 @@ AddType audio/ogg .oga
   </IfModule>
 </FilesMatch>
 
+# deny access to backup files
+<FilesMatch "(~|\.bak|\.swp)$">
+  <IfModule authz_host_module>
+    #Apache 2.4
+    Require all denied
+  </IfModule>
+  <IfModule !authz_host_module>
+    #Apache 2.2
+    Deny from all
+  </IfModule>
+</FilesMatch>
+
 <IfModule mod_rewrite.c>
   RewriteEngine on
   # Protect repository directory from browsing