From bf19fe2d1aaa3ca390b9175d3e1d17070e166843 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Mon, 09 May 2016 03:23:31 -0400
Subject: [PATCH] Move commented mod_headers settings to the end of the file

---
 .htaccess |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/.htaccess b/.htaccess
index 50b183c..baa2bb1 100644
--- a/.htaccess
+++ b/.htaccess
@@ -43,6 +43,17 @@
 SetOutputFilter DEFLATE
 </IfModule>
 
+<IfModule mod_expires.c>
+ExpiresActive On
+ExpiresDefault "access plus 1 month"
+</IfModule>
+
+FileETag MTime Size
+
+<IfModule mod_autoindex.c>
+Options -Indexes
+</ifModule>
+
 <IfModule mod_headers.c>
 # replace 'append' with 'merge' for Apache version 2.2.9 and later
 #Header append Cache-Control public env=!NO_CACHE
@@ -76,14 +87,3 @@
 # more flags for script, stylesheets and images available, read RFC for more information
 #Header set Content-Security-Policy "referrer no-referrer"
 </IfModule>
-
-<IfModule mod_expires.c>
-ExpiresActive On
-ExpiresDefault "access plus 1 month"
-</IfModule>
-
-FileETag MTime Size
-
-<IfModule mod_autoindex.c>
-Options -Indexes
-</ifModule>

--
Gitblit v1.9.1