]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/templates/default/apache.frontend.erb
Allow access to old 404 map tile
[chef.git] / cookbooks / web / templates / default / apache.frontend.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <VirtualHost *:443>
4   #
5   # Basic server configuration
6   #
7   ServerName <%= node[:fqdn] %>
8   ServerAlias api.openstreetmap.org www.openstreetmap.org 127.0.0.1
9   ServerAdmin webmaster@openstreetmap.org
10
11   #
12   # Enable SSL
13   #
14   SSLEngine on
15   SSLProxyEngine on
16   SSLCertificateFile /etc/ssl/certs/www.openstreetmap.org.pem
17   SSLCertificateKeyFile /etc/ssl/private/www.openstreetmap.org.key
18
19   #
20   # Setup logging
21   #
22   LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\" %Dus %{UNIQUE_ID}e %{SSL_PROTOCOL}x %{SSL_CIPHER}x" combined_with_time
23   CustomLog /var/log/apache2/access.log combined_with_time
24   ErrorLog /var/log/apache2/error.log
25
26   #
27   # Turn on various features
28   #
29   ExpiresActive On
30   RewriteEngine on
31
32   #
33   # Add the unique ID to the request headers
34   #
35   RequestHeader set X-Request-Id %{UNIQUE_ID}e
36
37   #
38   # Remove Proxy request header to mitigate https://httpoxy.org/
39   #
40   RequestHeader unset Proxy early
41
42   #
43   # Block troublesome GPX data scrapping
44   #
45   RewriteCond %{REQUEST_METHOD} HEAD
46   RewriteRule ^/trace/\d+/data - [F,L]
47
48   #
49   # Block tilesAtHome
50   #
51   RewriteCond %{HTTP_USER_AGENT} tilesAtHome
52   RewriteRule . - [F,L]
53
54   #
55   # Block changeset scraper
56   #
57   RewriteCond %{HTTP_USER_AGENT} "OSMApp Tuner"
58   RewriteRule . - [F,L]
59
60   #
61   # Force extended cache headers on the old 404 map tile
62   #
63   <Location /openlayers/img/404.png>
64     Header always set Cache-Control "public, max-age=31536000, immutable"
65     Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
66   </Location>
67
68   #
69   # Block attempts to access old API versions
70   #
71   RewriteRule ^/api/0.[12345]/ - [G,L]
72
73   #
74   # Block JOSM revisions  1722-1727 as they have a serious bug that causes
75   # lat/lon to be swapped (https://josm.openstreetmap.de/ticket/2804)
76   #
77   RewriteCond %{HTTP_USER_AGENT} "^JOSM/[0-9]+\.[0-9]+ \(172[234567]\)"
78   RewriteRule . - [F,L]
79
80   #
81   # Block a changeset that seems to lock things up
82   #
83   RewriteRule ^/api/0.6/changeset/6823497/download$ - [F,L]
84
85   #
86   # Force special MIME type for crossdomain.xml files
87   #
88   <Files crossdomain.xml>
89     ForceType text/x-cross-domain-policy
90   </Files>
91
92   #
93   # Set expiry for assets
94   #
95   <Location /assets/>
96     Header unset Last-Modified
97     FileETag Size
98
99     ExpiresDefault "access plus 1 year"
100     Header set Cache-Control "immutable, max-age=31536000"
101   </Location>
102
103   #
104   # Set expiry for attachments
105   #
106   <Location /attachments/>
107     Header unset ETag
108     FileETag None
109
110     ExpiresDefault "access plus 1 year"
111   </Location>
112
113   #
114   # Set expiry for other static content
115   #
116   <Location /export/embed.html>
117     ExpiresDefault "access plus 7 days"
118   </Location>
119   <Location /images/>
120     ExpiresDefault "access plus 10 years"
121   </Location>
122   <Location /openlayers/>
123     ExpiresDefault "access plus 7 days"
124   </Location>
125
126   #
127   # Configure rails
128   #
129   DocumentRoot <%= node[:web][:base_directory] %>/rails/public
130   RailsEnv production
131   PassengerMinInstances 10
132   PassengerMaxRequests 5000
133   PassengerMaxRequestQueueSize 250
134   PassengerPreStart https://www.openstreetmap.org/
135   PassengerAppGroupName rails
136   SetEnv OPENSTREETMAP_STATUS <%= @status %>
137   SetEnv SECRET_KEY_BASE <%= @secret_key_base %>
138   Alias /favicon.ico <%= node[:web][:base_directory] %>/rails/app/assets/favicons/favicon.ico
139   Alias /openlayers <%= node[:web][:base_directory] %>/rails/vendor/assets/openlayers
140   Alias /stats /store/rails/stats
141   Alias /user/image /store/rails/user/image
142   Alias /attachments /store/rails/attachments
143
144   #
145   # Preserve the host name when forwarding to the proxy
146   #
147   ProxyPreserveHost on
148
149   #
150   # Set a long timeout - changeset uploads can take a long time
151   #
152   ProxyTimeout 3600
153
154   #
155   # Allow all proxy requests
156   #
157   <Proxy *>
158     Require all granted
159   </Proxy>
160
161   #
162   # Pass some other API calls to the backends via a load balancer
163   #
164   ProxyPassMatch ^(/api/0\.6/map(\.json|\.xml)?)$ balancer://backend$1
165   ProxyPassMatch ^(/api/0\.6/tracepoints)$ balancer://backend$1
166   ProxyPassMatch ^(/api/0\.6/amf/read)$ balancer://backend$1
167   ProxyPassMatch ^(/api/0\.6/swf/trackpoints)$ balancer://backend$1
168   ProxyPassMatch ^(/api/0\.6/changeset/[0-9]+(\.json|\.xml)?)$ balancer://backend$1
169   ProxyPassMatch ^(/api/0\.6/changeset/[0-9]+/upload(\.json|\.xml)?)$ balancer://amsterdam$1
170   ProxyPassMatch ^(/api/0\.6/changeset/[0-9]+/download(\.json|\.xml)?)$ balancer://backend$1
171   ProxyPassMatch ^(/api/0\.6/(node|way|relation)/[0-9]+(\.json|\.xml)?)$ balancer://backend$1
172   ProxyPassMatch ^(/api/0\.6/(node|way|relation)/[0-9]+/(full|history|search|ways|relations)(\.json|\.xml)?)$ balancer://backend$1
173   ProxyPassMatch ^(/api/0\.6/nodes(\.json|\.xml)?)$ balancer://backend$1
174   ProxyPassMatch ^(/api/0\.6/ways(\.json|\.xml)?)$ balancer://backend$1
175   ProxyPassMatch ^(/api/0\.6/relations(\.json|\.xml)?)$ balancer://backend$1
176   ProxyPassMatch ^(/trace/[0-9]+/data(|/|.xml))$ balancer://backend$1
177
178   #
179   # Redirect trac and wiki requests to the right places
180   #
181   RedirectPermanent /trac/ https://trac.openstreetmap.org/
182   RedirectPermanent /wiki/ https://wiki.openstreetmap.org/
183
184   #
185   # Redirect requests for various images to the right place
186   #
187   RedirectPermanent /images/osm_logo.png https://www.openstreetmap.org/assets/osm_logo.png
188   RedirectPermanent /images/cc_button.png https://www.openstreetmap.org/assets/cc_button.png
189
190   #
191   # Define a load balancer for the local backends
192   #
193   <Proxy balancer://backend>
194     ProxySet lbmethod=bybusyness
195 <% Array(node[:web][:backends]).each do |backend| -%>
196     BalancerMember https://<%= backend %> disablereuse=on
197 <% end -%>
198   </Proxy>
199
200   #
201   # Define a load balancer for the Amsterdam backends
202   #
203   <Proxy balancer://amsterdam>
204     ProxySet lbmethod=bybusyness
205 <% ["rails1.ams", "rails2.ams", "rails3.ams"].each do |backend| -%>
206     BalancerMember https://<%= backend %> disablereuse=on
207 <% end -%>
208   </Proxy>
209
210   #
211   # Define a load balancer for the Bytemark backends
212   #
213   <Proxy balancer://bytemark>
214     ProxySet lbmethod=bybusyness
215 <% ["rails4.bm", "rails5.bm"].each do |backend| -%>
216     BalancerMember https://<%= backend %> disablereuse=on
217 <% end -%>
218   </Proxy>
219
220   #
221   # Redirect api requests made to www.osm.org to api.osm.org
222   #
223 #  RewriteCond %{HTTP_HOST} =www.openstreetmap.org
224 #  RewriteRule ^/api/(.*)$ https://api.openstreetmap.org/api/$1 [L,NE,R=permanent]
225
226   #
227   # Redirect non-api requests made to api.osm.org to www.osm.org
228   #
229   RewriteCond %{HTTP_HOST} =api.openstreetmap.org
230   RewriteCond %{REQUEST_URI} !^/api/
231   RewriteRule ^(.*)$ https://www.openstreetmap.org$1 [L,NE,R=permanent]
232 </VirtualHost>
233
234 <VirtualHost *:80>
235   ServerName openstreetmap.org.uk
236   ServerAlias www.openstreetmap.org.uk
237   ServerAlias openstreetmap.co.uk
238   ServerAlias www.openstreetmap.co.uk
239
240   RedirectPermanent /events.ics http://calendar.openstreetmap.org.uk/events.ics
241   RedirectPermanent / https://www.openstreetmap.org/
242 </VirtualHost>
243
244 <VirtualHost *:80>
245   ServerName openstreetmap.org
246
247   Header always set Cache-Control "max-age=31536000"
248   Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
249
250   RewriteEngine on
251
252   RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
253
254   RewriteCond %{REQUEST_URI} !^/server-status$
255   RewriteRule ^(.*)$ https://openstreetmap.org$1 [L,NE,R=permanent]
256 </VirtualHost>
257
258 <VirtualHost *:80>
259   ServerName www.openstreetmap.org
260   ServerAlias *
261
262   Header always set Cache-Control "max-age=31536000"
263   Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
264
265   RewriteEngine on
266
267   RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
268
269   RewriteCond %{REQUEST_URI} !^/server-status$
270   RewriteRule ^(.*)$ https://www.openstreetmap.org$1 [L,NE,R=permanent]
271 </VirtualHost>
272
273 <VirtualHost *:443>
274   ServerName openstreetmap.org
275   ServerAlias *
276
277   SSLEngine on
278   SSLCertificateFile /etc/ssl/certs/www.openstreetmap.org.pem
279   SSLCertificateKeyFile /etc/ssl/private/www.openstreetmap.org.key
280
281   Header always set Cache-Control "max-age=31536000"
282   Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
283
284   RedirectPermanent / https://www.openstreetmap.org/
285 </VirtualHost>
286
287 <Directory <%= node[:web][:base_directory] %>/rails/public>
288   Require all granted
289
290   RewriteCond "%{HTTP:Accept-encoding}" "gzip"
291   RewriteCond "%{REQUEST_FILENAME}\.gz" -s
292   RewriteRule "^(.*)\.(css|ico|js|json|svg|xml)$" "$1\.$2\.gz" [QSA]
293
294   RewriteRule "\.css\.gz$" "-" [T=text/css,E=no-gzip:1]
295   RewriteRule "\.ico\.gz$"  "-" [T=image/vnd.microsoft.icon,E=no-gzip:1]
296   RewriteRule "\.js\.gz$"  "-" [T=text/javascript,E=no-gzip:1]
297   RewriteRule "\.json\.gz$"  "-" [T=application/json,E=no-gzip:1]
298   RewriteRule "\.svg\.gz$"  "-" [T=image/svg+xml,E=no-gzip:1]
299   RewriteRule "\.xml\.gz$"  "-" [T=application/xml,E=no-gzip:1]
300
301   <FilesMatch "\.(css|ico|js|json|svg|xml)\.gz$">
302     Header append Content-Encoding gzip
303     Header append Vary Accept-Encoding
304   </FilesMatch>
305 </Directory>
306
307 <Directory /srv/www.openstreetmap.org/rails/app/assets>
308   Require all granted
309 </Directory>
310
311 <Directory /srv/www.openstreetmap.org/rails/vendor/assets>
312   Require all granted
313 </Directory>
314
315 <Directory /store/rails/stats>
316   Require all granted
317 </Directory>
318
319 <Directory /store/rails/user/image>
320   Require all granted
321 </Directory>
322
323 <Directory /store/rails/attachments>
324   Require all granted
325 </Directory>