]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Added PATCH to the allowed Apache request methods. 1556/head
authorKeith Carangelo <mail@kcaran.com>
Mon, 14 Sep 2020 19:32:51 +0000 (15:32 -0400)
committerKeith Carangelo <mail@kcaran.com>
Mon, 14 Sep 2020 19:32:51 +0000 (15:32 -0400)
.htaccess

index 4c00427195ecb0998589fc09dd02fa8580d97a3e..76fd7d09de5221dd301c0475707374754d34dee9 100644 (file)
--- a/.htaccess
+++ b/.htaccess
@@ -15,23 +15,7 @@ RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule ^ index.php [QSA,L]
 
-<Limit GET POST PUT DELETE OPTIONS>
-  <IfModule version_module>
-    <IfVersion >= 2.4>
-       Require all granted
-    </IfVersion>
-    <IfVersion < 2.4>
-       Allow from all
-       Deny from none
-    </IfVersion>
-  </IfModule>
-
-  <IfModule !version_module>
-    Require all granted
-  </IfModule>
-</Limit>
-
-<LimitExcept GET POST PUT DELETE OPTIONS>
+<LimitExcept GET POST PUT DELETE PATCH OPTIONS>
   <IfModule version_module>
     <IfVersion >= 2.4>
        Require all denied