]> git.openstreetmap.org Git - chef.git/commitdiff
nominatim: disallow details requests without referer
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 26 Mar 2024 19:47:44 +0000 (20:47 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 26 Mar 2024 19:47:44 +0000 (20:47 +0100)
cookbooks/nominatim/templates/default/nginx.erb

index fe583d720042163a90c539dc37af7178b2db8175..6aa07dbe139a61293d4503ae107f443761bc19b5 100644 (file)
@@ -7,9 +7,9 @@ upstream nominatim_service {
 }
 
 map $uri $nominatim_script_name {
-    ~^(.+?\.php)         $1;
-    ~^/([^/]+)           $1.php;
-    ^$                   search.php;
+    ~^/*(.+?)\.php        $1;
+    ~^/*([^/]+)           $1;
+    ^$                   search;
 }
 
 map $uri $nominatim_path_info {
@@ -85,6 +85,11 @@ map $missing_referer$missing_ua$email_id $blocked_email {
    include <%= @confdir %>/nginx_blocked_email.conf;
 }
 
+map $nominatim_script_name$missing_referer $blocked_path {
+   default 0;
+   "details1" 1;
+}
+
 map $whitelisted $limit_www {
     1 "";
     0 $binary_remote_addr;
@@ -194,6 +199,8 @@ server {
         { return 403; }
         if ($blocked_email)
         { return 403; }
+        if ($blocked_path)
+        { return 403; }
         include <%= @confdir %>/nginx_blocked_generic.conf;
 
         limit_req zone=www burst=10;