From b36599d7d102e864b89c65986fa0945a931628cc Mon Sep 17 00:00:00 2001
From: Grant Slater
Date: Fri, 9 Jun 2023 20:12:27 +0100
Subject: [PATCH] planet: increase rate limit to 16MB/s
---
cookbooks/planet/files/default/cgi/HEADER.cgi | 2 +-
cookbooks/planet/templates/default/apache.erb | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/cookbooks/planet/files/default/cgi/HEADER.cgi b/cookbooks/planet/files/default/cgi/HEADER.cgi
index d71c3c5aa..2404f00ce 100644
--- a/cookbooks/planet/files/default/cgi/HEADER.cgi
+++ b/cookbooks/planet/files/default/cgi/HEADER.cgi
@@ -70,7 +70,7 @@ print("""
The files found here are regularly-updated, complete copies of the OpenStreetMap.org
database, and those published before the 12 September 2012 are distributed under a Creative Commons Attribution-ShareAlike 2.0 license, those published after are Open Data Commons Open Database License 1.0 licensed. For more information, see the project wiki.
-WARNING Download speeds are currently restricted to 4096 KB/s due to limited available capacity on our Internet connection.
Please use torrents or
a mirror if possible.
+WARNING Download speeds are currently restricted to 16 MB/s due to limited available capacity on our Internet connection.
Please use torrents or
a mirror if possible.
diff --git a/cookbooks/planet/templates/default/apache.erb b/cookbooks/planet/templates/default/apache.erb
index 8ea1698e9..faddc0589 100644
--- a/cookbooks/planet/templates/default/apache.erb
+++ b/cookbooks/planet/templates/default/apache.erb
@@ -65,8 +65,8 @@
# Temporary download rate limit due to upstream fibre connection issues. - 13 Jan 2020
SetOutputFilter RATE_LIMIT
- SetEnv rate-limit 4096
- SetEnv rate-initial-burst 8192
+ SetEnv rate-limit 16384
+ SetEnv rate-initial-burst 32768
--
2.39.5
|