]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/templates/default/apache.frontend.erb
Fix web server logrotate for Ubuntu 16.04
[chef.git] / cookbooks / web / templates / default / apache.frontend.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <% [80, 443].each do |port| -%>
4 <VirtualHost *:<%= port %>>
5   #
6   # Basic server configuration
7   #
8   ServerName <%= node[:fqdn] %>
9   ServerAlias api.openstreetmap.org www.openstreetmap.org
10   ServerAdmin webmaster@openstreetmap.org
11 <% if port == 443 -%>
12
13   #
14   # Enable SSL
15   #
16   SSLEngine on
17   SSLProxyEngine on
18 <% end -%>
19
20   #
21   # Setup logging
22   #
23   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
24   CustomLog /var/log/apache2/access.log combined_with_time
25   ErrorLog /var/log/apache2/error.log
26
27   #
28   # Turn on various features
29   #
30   ExpiresActive On
31   RewriteEngine on
32
33   #
34   # Add the unique ID to the request headers
35   #
36   RequestHeader set X-Request-Id %{UNIQUE_ID}e
37
38   #
39   # Block troublesome GPX data scrapping
40   #
41   RewriteCond %{REQUEST_METHOD} HEAD
42   RewriteRule ^/trace/\d+/data - [F,L]
43
44   #
45   # Block tilesAtHome
46   #
47   RewriteCond %{HTTP_USER_AGENT} tilesAtHome
48   RewriteRule . - [F,L]
49
50   #
51   # Block changeset scraper
52   #
53   RewriteCond %{HTTP_USER_AGENT} "OSMApp Tuner"
54   RewriteRule . - [F,L]  
55
56   #
57   # Block requests for the old 404 map tile
58   #
59   RewriteRule ^/openlayers/img/404.png$ - [G,L]
60
61   #
62   # Block attempts to access old API versions
63   #
64   RewriteRule ^/api/0.[12345]/ - [G,L]
65
66   #
67   # Block JOSM revisions  1722-1727 as they have a serious bug that causes
68   # lat/lon to be swapped (http://josm.openstreetmap.de/ticket/2804)
69   #
70   RewriteCond %{HTTP_USER_AGENT} "^JOSM/[0-9]+\.[0-9]+ \(172[234567]\)"
71   RewriteRule . - [F,L]
72
73   #
74   # Block a changeset that seems to lock things up
75   #
76   RewriteRule ^/api/0.6/changeset/6823497/download$ - [F,L]
77
78   #
79   # Force special MIME type for crossdomain.xml files
80   #
81   <Files crossdomain.xml>
82     ForceType text/x-cross-domain-policy
83   </Files>
84
85   #
86   # Set expiry for assets
87   #
88   <Location /assets/>
89     Header unset Last-Modified
90     Header unset ETag
91     FileETag None
92
93     ExpiresDefault "access plus 1 year"
94   </Location>
95
96   #
97   # Set expiry for attachments
98   #
99   <Location /attachments/>
100     Header unset Last-Modified
101     Header unset ETag
102     FileETag None
103
104     ExpiresDefault "access plus 1 year"
105   </Location>
106
107   #
108   # Set expiry for other static content
109   #
110   <Location /export/embed.html>
111     ExpiresDefault "access plus 7 days"
112   </Location>
113   <Location /images/>
114     ExpiresDefault "access plus 10 years"
115   </Location>
116   <Location /javascripts/>
117     ExpiresDefault "access plus 10 years"
118   </Location>
119   <Location /openlayers/>
120     ExpiresDefault "access plus 7 days"
121   </Location>
122   <Location /stylesheets/>
123     ExpiresDefault "access plus 10 years"
124   </Location>
125
126   #
127   # Set expiry for Potlatch 1
128   #
129   <Location /potlatch/>
130     ExpiresDefault "access plus 7 days"
131   </Location>
132
133   #
134   # Set expiry for Potlatch 2
135   #
136   <Location /potlatch2/>
137     ExpiresByType application/x-shockwave-flash "access plus 1 day"
138     ExpiresByType application/xml "access plus 1 day"
139     ExpiresByType text/css "access plus 1 day"
140     ExpiresByType image/png "access plus 7 days"
141   </Location>
142
143   #
144   # Configure rails
145   #
146   DocumentRoot <%= node[:web][:base_directory] %>/rails/public
147   RailsEnv production
148   PassengerMinInstances 10
149   PassengerMaxRequests 5000
150   PassengerMaxRequestQueueSize 250
151 <% if port == 443 -%>
152   PassengerPreStart https://www.openstreetmap.org/
153 <% else -%>
154   PassengerPreStart http://www.openstreetmap.org/
155 <% end -%>
156   SetEnv SECRET_KEY_BASE <%= @secret_key_base %>
157   Alias /favicon.ico <%= node[:web][:base_directory] %>/rails/app/assets/favicons/favicon.ico
158   Alias /openlayers <%= node[:web][:base_directory] %>/rails/vendor/assets/openlayers
159   Alias /stats /store/rails/stats
160   Alias /user/image /store/rails/user/image
161   Alias /attachments /store/rails/attachments
162
163   #
164   # Preserve the host name when forwarding to the proxy
165   #
166   ProxyPreserveHost on
167
168   #
169   # Set a long timeout - changeset uploads can take a long time
170   #
171   ProxyTimeout 3600
172
173   #
174   # Allow all proxy requests
175   #
176   <Proxy *>
177     Require all granted
178   </Proxy>
179
180   #
181   # Pass some other API calls to the backends via a load balancer
182   #
183   ProxyPass /api/0.6/map balancer://backend/api/0.6/map
184   ProxyPass /api/0.6/tracepoints balancer://backend/api/0.6/tracepoints
185   ProxyPass /api/0.6/amf/read balancer://backend/api/0.6/amf/read
186   ProxyPass /api/0.6/swf/trackpoints balancer://backend/api/0.6/swf/trackpoints
187   ProxyPassMatch ^(/api/0\.6/changeset/[0-9]+/upload)$ balancer://bytemark$1
188   ProxyPassMatch ^(/api/0\.6/changeset/[0-9]+/download)$ balancer://backend$1
189   ProxyPassMatch ^(/api/0\.6/(node|way|relation)/[0-9]+)$ balancer://backend$1
190   ProxyPassMatch ^(/api/0\.6/(node|way|relation)/[0-9]+/(full|history|search|ways))$ balancer://backend$1
191   ProxyPass /api/0.6/nodes balancer://backend/api/0.6/nodes
192   ProxyPass /api/0.6/ways balancer://backend/api/0.6/ways
193   ProxyPass /api/0.6/relations balancer://backend/api/0.6/relations
194   ProxyPassMatch ^(/trace/[0-9]+/data(|/|.xml))$ balancer://backend$1
195
196   #
197   # Redirect trac and wiki requests to the right places
198   #
199   RedirectPermanent /trac/ http://trac.openstreetmap.org/
200   RedirectPermanent /wiki/ http://wiki.openstreetmap.org/
201
202   #
203   # Redirect requests for various images to the right place
204   #
205   RedirectPermanent /images/osm_logo.png http://www.openstreetmap.org/assets/osm_logo.png
206   RedirectPermanent /images/cc_button.png http://www.openstreetmap.org/assets/cc_button.png
207
208   #
209   # Define a load balancer for the local backends
210   #
211   <Proxy balancer://backend>
212     ProxySet lbmethod=bybusyness
213 <% node[:web][:backends].each do |backend| -%>
214 <% if port == 443 -%>
215     BalancerMember https://<%= backend %> disablereuse=on
216 <% else -%>
217     BalancerMember http://<%= backend %>
218 <% end -%>
219 <% end -%>
220   </Proxy>
221
222   #
223   # Define a load balancer for the Bytemark backends
224   #
225   <Proxy balancer://bytemark>
226     ProxySet lbmethod=bybusyness
227 <% ["rails4.bm", "rails5.bm"].each do |backend| -%>
228 <% if port == 443 -%>
229     BalancerMember https://<%= backend %> disablereuse=on
230 <% else -%>
231     BalancerMember http://<%= backend %>
232 <% end -%>
233 <% end -%>
234   </Proxy>
235 <% if port == 80 -%>
236
237   #
238   # Redirect requests which should be secure to https
239   #
240   RewriteCond %{REQUEST_URI} ^/login(\.html)?$ [OR]
241   RewriteCond %{REQUEST_URI} ^/user/(new|create-account\.html)$ [OR]
242   RewriteCond %{REQUEST_URI} ^/user/terms$ [OR]
243   RewriteCond %{REQUEST_URI} ^/user/save$ [OR]
244   RewriteCond %{REQUEST_URI} ^/user/([^/]+)/account$ [OR]
245   RewriteCond %{REQUEST_URI} ^/user/reset-password$
246   RewriteRule ^(.*)$ https://www.openstreetmap.org$1 [L,NE,R=permanent]
247
248   #
249   # Redirect api requests made to www.osm.org to api.osm.org
250   #
251 #  RewriteCond %{HTTP_HOST} =www.openstreetmap.org
252 #  RewriteRule ^/api/(.*)$ http://api.openstreetmap.org/api/$1 [L,NE,R=permanent]
253
254   #
255   # Redirect non-api requests made to api.osm.org to www.osm.org
256   #
257   RewriteCond %{HTTP_HOST} =api.openstreetmap.org
258   RewriteCond %{REQUEST_URI} !^/api/
259   RewriteRule ^(.*)$ http://www.openstreetmap.org$1 [L,NE,R=permanent]
260 <% elsif port == 443 -%>
261
262   #
263   # Redirect api requests made to www.osm.org to api.osm.org
264   #
265 #  RewriteCond %{HTTP_HOST} =www.openstreetmap.org
266 #  RewriteRule ^/api/(.*)$ https://api.openstreetmap.org/api/$1 [L,NE,R=permanent]
267
268   #
269   # Redirect non-api requests made to api.osm.org to www.osm.org
270   #
271   RewriteCond %{HTTP_HOST} =api.openstreetmap.org
272   RewriteCond %{REQUEST_URI} !^/api/
273   RewriteRule ^(.*)$ https://www.openstreetmap.org$1 [L,NE,R=permanent]
274 <% end -%>
275 </VirtualHost>
276
277 <% end -%>
278 <VirtualHost *:80>
279   ServerName openstreetmap.org
280   ServerAlias maps.openstreetmap.org mapz.openstreetmap.org
281   ServerAlias openstreetmap.com www.openstreetmap.com
282   ServerAlias maps.openstreetmap.com mapz.openstreetmap.com
283   ServerAlias openstreetmap.net www.openstreetmap.net
284   ServerAlias maps.openstreetmap.net mapz.openstreetmap.net
285   ServerAlias openstreetmap.ca www.openstreetmap.ca
286   ServerAlias maps.openstreetmap.ca mapz.openstreetmap.ca
287   ServerAlias openstreetmap.eu www.openstreetmap.eu
288   ServerAlias maps.openstreetmap.eu mapz.openstreetmap.eu
289   ServerAlias openstreetmap.pro www.openstreetmap.pro
290   ServerAlias maps.openstreetmap.pro mapz.openstreetmap.pro
291   ServerAlias openstreetmaps.org www.openstreetmaps.org
292   ServerAlias maps.openstreetmaps.org mapz.openstreetmaps.org
293   ServerAlias osm.org www.osm.org
294   ServerAlias maps.osm.org mapz.osm.org
295   ServerAlias openmaps.org www.openmaps.org
296   ServerAlias maps.openmaps.org mapz.openmaps.org
297   ServerAlias openstreetmap.io www.openstreetmap.io
298   ServerAlias maps.openstreetmap.io mapz.openstreetmap.io
299   ServerAlias osm.io www.osm.io
300   ServerAlias maps.osm.io mapz.osm.io
301   ServerAlias openworldmap.org www.openworldmap.org
302   ServerAlias maps.openworldmap.org mapz.openworldmap.org
303   ServerAlias freeosm.org www.freeosm.org
304   ServerAlias maps.freeosm.org mapz.freeosm.org
305   ServerAlias open-maps.org www.open-maps.org
306   ServerAlias maps.open-maps.org mapz.open-maps.org
307   ServerAlias open-maps.com www.open-maps.com
308   ServerAlias maps.open-maps.com mapz.open-maps.com
309   ServerAlias osmbugs.org www.osmbugs.org
310   ServerAlias maps.osmbugs.org mapz.osmbugs.org
311
312   #Third Party Sites
313   ServerAlias openstreetmap.pm www.openstreetmap.pm
314
315   RedirectPermanent / http://www.openstreetmap.org/
316 </VirtualHost>
317
318 <VirtualHost *:443>
319   ServerName openstreetmap.org
320   ServerAlias maps.openstreetmap.org mapz.openstreetmap.org
321
322   SSLEngine on
323
324   RedirectPermanent / https://www.openstreetmap.org/
325 </VirtualHost>
326
327 <VirtualHost *:80>
328   ServerName openstreetmap.org.uk
329   ServerAlias www.openstreetmap.org.uk
330   ServerAlias openstreetmap.co.uk
331   ServerAlias www.openstreetmap.co.uk
332
333   RedirectPermanent /events.ics http://calendar.openstreetmap.org.uk/events.ics
334   RedirectPermanent / http://www.openstreetmap.org/
335 </VirtualHost>
336
337 <Directory <%= node[:web][:base_directory] %>/rails/public>
338   Require all granted
339 </Directory>
340
341 <Directory /srv/www.openstreetmap.org/rails/app/assets>
342   Require all granted
343 </Directory>
344
345 <Directory /srv/www.openstreetmap.org/rails/vendor/assets>
346   Require all granted
347 </Directory>
348
349 <Directory /store/rails/stats>
350   Require all granted
351 </Directory>
352
353 <Directory /store/rails/user/image>
354   Require all granted
355 </Directory>
356
357 <Directory /store/rails/attachments>
358   Require all granted
359 </Directory>