]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/templates/default/nginx.erb
nominatim: set cors headers for qa-data
[chef.git] / cookbooks / nominatim / templates / default / nginx.erb
1 upstream nominatim_service {
2   server unix:/run/php/nominatim.openstreetmap.org.sock;
3 }
4
5 map $uri $nominatim_script_name {
6     ~^(.+?\.php)         $1;
7     ~^/([^/]+)           $1.php;
8     ^$                   search.php;
9 }
10
11 map $uri $nominatim_path_info {
12     ~^/([^/]+)(.*)$      $2;
13 }
14
15 map $args $format {
16     default                  default;
17     ~(^|&)format=html(&|$)   html;
18     ~(^|&)format=            other;
19 }
20
21 map $uri/$format $forward_to_ui {
22     default               1;
23     ~^/ui                 0;
24     ~/other$              0;
25     ~/reverse.*/default   0;
26     ~/lookup.*/default    0;
27     ~/status.*/default    0;
28 }
29
30 map $query_string $email_id {
31     ~(^|&)email=([^&]+)  $2;
32 }
33
34 map $email_id $missing_email {
35     default "";
36     "" 1;
37 }
38
39 map $http_user_agent $missing_ua {
40     default "";
41     "" 1;
42 }
43
44 map $http_referer $missing_referer {
45     default "";
46     "" 1;
47 }
48
49 # Whitelisted IPs
50 geo $whitelisted {
51     default 0;
52 <% @frontends.each do |frontend| -%>
53 <% frontend.ipaddresses(:role => :external).sort.each do |address| -%>
54     <%= address %> 1;
55 <% end -%>
56 <% end -%>
57     46.235.224.148 1;
58     209.132.180.180 1;
59     209.132.180.168 1;
60     8.43.85.23 1; # gnome
61 }
62
63 map $missing_email$missing_referer$http_user_agent $blocked_user_agent {
64    default 0;
65    "11" 2; # block any requests without identifier
66    include <%= @confdir %>/nginx_blocked_user_agent.conf;
67 }
68
69 map $missing_email$missing_ua$http_referer $blocked_referrer {
70    default 0;
71    include <%= @confdir %>/nginx_blocked_referrer.conf;
72 }
73
74 map $missing_referer$missing_ua$email_id $blocked_email {
75    default 0;
76    include <%= @confdir %>/nginx_blocked_email.conf;
77 }
78
79 map $whitelisted $limit_www {
80     1 "";
81     0 $binary_remote_addr;
82 }
83
84 map $blocked_user_agent $limit_tarpit {
85     0 "";
86     1 $binary_remote_addr;
87     2 $binary_remote_addr;
88 }
89
90 map $missing_email$missing_referer$http_user_agent $generic_mozilla {
91     default 0;
92     ~^11Mozilla/4.0 1;
93     ~^11Mozilla/5.0 2;
94 }
95
96 map $whitelisted$generic_mozilla$uri $limit_reverse {
97     default "";
98     ~01/reverse.*  $binary_remote_addr;
99     ~02/reverse.*  $binary_remote_addr;
100 }
101
102 limit_req_zone $limit_www zone=www:50m rate=2r/s;
103 limit_req_zone $limit_tarpit zone=tarpit:10m rate=1r/s;
104 limit_req_zone $binary_remote_addr zone=blocked:10m rate=20r/m;
105 limit_req_zone $limit_reverse zone=reverse:10m rate=10r/m;
106
107 server {
108     listen 80 default_server;
109     listen [::]:80 default_server;
110
111     access_log <%= node[:nominatim][:logdir] %>/nominatim.openstreetmap.org-access.log combined;
112     error_log <%= node[:nominatim][:logdir] %>/nominatim.openstreetmap.org-error.log;
113
114     location /nginx_status {
115         stub_status on;
116         access_log   off;
117         allow 127.0.0.1;
118         allow ::1;
119         deny all;
120     }
121
122      rewrite ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 permanent;
123
124      location / {
125          return 301 https://$host$request_uri;
126      }
127 }
128
129 server {
130     # IPv4
131     listen       443 ssl deferred backlog=16384 reuseport http2 default_server;
132     # IPv6
133     listen       [::]:443 ssl deferred backlog=16384 reuseport http2 default_server;
134     server_name  localhost;
135
136     ssl_certificate /etc/ssl/certs/<%= node[:fqdn] %>.pem;
137     ssl_certificate_key /etc/ssl/private/<%= node[:fqdn] %>.key;
138
139     root <%= @directory %>/website;
140     index search.php;
141
142     access_log <%= node[:nominatim][:logdir] %>/nominatim.openstreetmap.org-access.log combined;
143     error_log <%= node[:nominatim][:logdir] %>/nominatim.openstreetmap.org-error.log;
144
145     location /nginx_status {
146         stub_status on;
147         access_log   off;
148         allow 127.0.0.1;
149         allow ::1;
150         deny all;
151     }
152
153     error_page 403 /403.html;
154     location /403.html {
155         limit_req zone=blocked burst=5;
156     }
157
158     error_page 429 /509.html;
159     location /509.html {
160         limit_req zone=blocked burst=5;
161     }
162
163     location / {
164         try_files $uri $uri/ @php;
165     }
166
167     location /ui/ {
168         alias <%= @ui_directory %>/dist/;
169         index search.html;
170     }
171
172     location /qa-data/ {
173         add_header Access-Control-Allow-Origin "*";
174     }
175
176     location @php {
177         if ($blocked_user_agent ~ ^2$)
178         { return 403; }
179         if ($blocked_referrer)
180         { return 403; }
181         if ($blocked_email)
182         { return 403; }
183         include <%= @confdir %>/nginx_blocked_generic.conf;
184
185         limit_req zone=www burst=10;
186         limit_req zone=tarpit burst=5;
187         limit_req zone=reverse burst=5;
188         limit_req_status 429;
189         fastcgi_pass nominatim_service;
190         include fastcgi_params;
191         fastcgi_param QUERY_STRING    $args;
192         fastcgi_param PATH_INFO       "$nominatim_path_info";
193         fastcgi_param SCRIPT_FILENAME  "$document_root/$nominatim_script_name";
194         if ($forward_to_ui) {
195             rewrite ^(/[^/]*) https://$host/ui$1.html redirect;
196         }
197     }
198
199     location ~* \.php$ {
200         if ($blocked_user_agent ~ ^2$)
201         { return 403; }
202         if ($blocked_referrer)
203         { return 403; }
204         if ($blocked_email)
205         { return 403; }
206         include <%= @confdir %>/nginx_blocked_generic.conf;
207
208         limit_req zone=www burst=10;
209         limit_req zone=tarpit burst=2;
210         limit_req zone=reverse burst=5;
211         limit_req_status 429;
212         fastcgi_pass    nominatim_service;
213         include         fastcgi_params;
214         fastcgi_param   SCRIPT_FILENAME    $document_root$fastcgi_script_name;
215
216         if ($forward_to_ui) {
217             rewrite (.*).php https://$host/ui$1.html redirect;
218         }
219     }
220 }