]> git.openstreetmap.org Git - chef.git/commitdiff
planet: only rate limit files else apache segfault
authorGrant Slater <git@firefishy.com>
Mon, 13 Jan 2020 19:16:34 +0000 (19:16 +0000)
committerGrant Slater <git@firefishy.com>
Mon, 13 Jan 2020 19:16:34 +0000 (19:16 +0000)
cookbooks/planet/templates/default/apache.erb

index 8b46d6b0412d7d7807dd2de2ddec20462469ee8f..0a569626e9357203cfcad464ba8357144041f25a 100644 (file)
         RewriteRule ^(/cc\-by\-sa/relations\-latest\.osm\.bz2)$         ${latestplanet:$1} [R,L]
 
         # Temporary download rate limit due to upstream fibre connection issues. - 13 Jan 2020
         RewriteRule ^(/cc\-by\-sa/relations\-latest\.osm\.bz2)$         ${latestplanet:$1} [R,L]
 
         # Temporary download rate limit due to upstream fibre connection issues. - 13 Jan 2020
-        SetOutputFilter RATE_LIMIT
-        SetEnv rate-limit 400
-        SetEnv rate-initial-burst 512
+        <FilesMatch ".+\.(7z|bz2|gz|pbf|tgz|xz)$">
+          SetOutputFilter RATE_LIMIT
+          SetEnv rate-limit 400
+          SetEnv rate-initial-burst 512
+        </FilesMatch>
 
 </VirtualHost>
 
 
 </VirtualHost>