]> git.mxchange.org Git - friendica.git/blobdiff - mods/sample-nginx.config
[nginx] Move together deny blocks.
[friendica.git] / mods / sample-nginx.config
index 7bf8a1f1050527e20276e6b9527eacb253662a6d..a3e4611960c879acc0f85a2610b6d5573f17758d 100644 (file)
@@ -100,11 +100,6 @@ server {
 
   include mime.types;
 
-  # block these file types
-  location ~* \.(tpl|md|tgz|log|out)$ {
-    deny all;
-  }
-
   # statically serve these file types when possible otherwise fall back to
   # front controller allow browser to cache them added .htm for advanced source
   # code editor library
@@ -138,6 +133,11 @@ server {
     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
   }
 
+  # block these file types
+  location ~* \.(tpl|md|tgz|log|out)$ {
+    deny all;
+  }
+
   # deny access to all dot files
   location ~ /\. {
     deny all;