From 5996b0c6229ae2875faae06bdec3eba3d00ed62e Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 7 Feb 2010 11:02:26 +0000 Subject: [PATCH] Use a regex match to block tilesAtHome. --- config/lighttpd.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/lighttpd.conf b/config/lighttpd.conf index 9e8d4affb..a542e20c3 100644 --- a/config/lighttpd.conf +++ b/config/lighttpd.conf @@ -54,7 +54,7 @@ $HTTP["useragent"] =~ "Sosospider+" { url.access-deny = ("") } # # Block tilesAtHome # -$HTTP["useragent"] == "tilesAtHome" { url.access-deny = ("") } +$HTTP["useragent"] =~ "tilesAtHome" { url.access-deny = ("") } # # Block JOSM revisions 1722-1727 as they have a serious bug that causes -- 2.43.2