1 # DO NOT EDIT - This file is being maintained by Chef
5 # Basic server configuration
7 ServerName <%= node[:fqdn] %>
8 ServerAlias api.openstreetmap.org www.openstreetmap.org 127.0.0.1
9 ServerAdmin webmaster@openstreetmap.org
15 SSLCertificateFile /etc/ssl/certs/www.openstreetmap.org.pem
16 SSLCertificateKeyFile /etc/ssl/private/www.openstreetmap.org.key
21 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
22 CustomLog /var/log/apache2/access.log combined_with_time
23 ErrorLog /var/log/apache2/error.log
26 # Turn on various features
32 # Add the unique ID to the request headers
34 RequestHeader set X-Request-Id %{UNIQUE_ID}e
37 # Remove Proxy request header to mitigate https://httpoxy.org/
39 RequestHeader unset Proxy early
42 # Block troublesome GPX data scrapping
44 RewriteCond %{REQUEST_METHOD} HEAD
45 RewriteRule ^/trace/\d+/data - [F,L]
50 RewriteCond %{HTTP_USER_AGENT} tilesAtHome
54 # Block changeset scraper
56 RewriteCond %{HTTP_USER_AGENT} "OSMApp Tuner"
60 # Block attempts to access old API versions
62 RewriteRule ^/api/0.[12345]/ - [G,L]
65 # Block JOSM revisions 1722-1727 as they have a serious bug that causes
66 # lat/lon to be swapped (https://josm.openstreetmap.de/ticket/2804)
68 RewriteCond %{HTTP_USER_AGENT} "^JOSM/[0-9]+\.[0-9]+ \(172[234567]\)"
72 # Block a changeset that seems to lock things up
74 RewriteRule ^/api/0.6/changeset/6823497/download$ - [F,L]
77 # Ignore Vicon Valerus "online" status pings
78 # https://gist.github.com/Firefishy/86ed5b86991b225179b54bbafbcd769e
80 RewriteCond "%{QUERY_STRING}" "^q=abcde&t=20"
81 RewriteRule "^/api/0\.6/notes/search$" - [R=204,L]
84 # Force special MIME type for crossdomain.xml files
86 <Files crossdomain.xml>
87 ForceType text/x-cross-domain-policy
91 # Set expiry for assets
94 Header unset Last-Modified
97 ExpiresDefault "access plus 1 year"
98 Header set Cache-Control "immutable, max-age=31536000"
102 # Set expiry for attachments
104 <Location /attachments/>
108 ExpiresDefault "access plus 1 year"
112 # Set expiry for other static content
114 <Location /export/embed.html>
115 ExpiresDefault "access plus 7 days"
118 ExpiresDefault "access plus 10 years"
120 <Location /openlayers/>
121 Header unset Last-Modified
124 Header always set Cache-Control "public, max-age=31536000, immutable"
125 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
131 DocumentRoot <%= node[:web][:base_directory] %>/rails/public
133 PassengerMinInstances 10
134 PassengerMaxRequests 5000
135 PassengerMaxRequestQueueSize 250
136 PassengerPreStart https://www.openstreetmap.org/
137 PassengerAppGroupName rails
138 SetEnv OPENSTREETMAP_STATUS <%= @status %>
139 SetEnv SECRET_KEY_BASE <%= @secret_key_base %>
140 Alias /favicon.ico <%= node[:web][:base_directory] %>/rails/app/assets/favicons/favicon.ico
141 Alias /openlayers <%= node[:web][:base_directory] %>/static/openlayers
142 Alias /stats /store/rails/stats
143 Alias /user/image /store/rails/user/image
144 Alias /attachments /store/rails/attachments
147 # Pass authentication related headers to cgimap
154 # Pass supported calls to cgimap
156 RewriteRule ^/api/0\.6/map(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
157 RewriteCond %{REQUEST_METHOD} ^(HEAD|GET)$
158 RewriteRule ^/api/0\.6/(node|way|relation|changeset)/[0-9]+(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
159 RewriteRule ^/api/0\.6/(node|way|relation)/[0-9]+/history(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
160 RewriteRule ^/api/0\.6/(node|way|relation)/[0-9]+/relations(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
161 RewriteRule ^/api/0\.6/node/[0-9]+/ways(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
162 RewriteRule ^/api/0\.6/(way|relation)/[0-9]+/full(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
163 RewriteRule ^/api/0\.6/(nodes|ways|relations)(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
164 RewriteRule ^/api/0\.6/changeset/[0-9]+/(upload|download)(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
167 # Redirect trac and wiki requests to the right places
169 RedirectPermanent /trac/ https://trac.openstreetmap.org/
170 RedirectPermanent /wiki/ https://wiki.openstreetmap.org/
173 # Redirect requests for various images to the right place
175 RedirectPermanent /images/osm_logo.png https://www.openstreetmap.org/assets/osm_logo.png
176 RedirectPermanent /images/cc_button.png https://www.openstreetmap.org/assets/cc_button.png
179 # Redirect api requests made to www.openstreetmap.org to api.openstreetmap.org
181 # RewriteCond %{HTTP_HOST} =www.openstreetmap.org
182 # RewriteRule ^/api/(.*)$ https://api.openstreetmap.org/api/$1 [L,NE,R=permanent]
185 # Redirect non-api requests made to api.openstreetmap.org to www.openstreetmap.org
187 RewriteCond %{HTTP_HOST} =api.openstreetmap.org
188 RewriteCond %{REQUEST_URI} !^/api/
189 RewriteRule ^(.*)$ https://www.openstreetmap.org$1 [L,NE,R=permanent]
193 ServerName openstreetmap.org.uk
194 ServerAlias www.openstreetmap.org.uk
195 ServerAlias openstreetmap.co.uk
196 ServerAlias www.openstreetmap.co.uk
198 RedirectPermanent /events.ics http://calendar.openstreetmap.org.uk/events.ics
199 RedirectPermanent / https://www.openstreetmap.org/
205 Header always set Cache-Control "max-age=31536000"
206 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
210 RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
212 RewriteCond %{REQUEST_URI} !^/server-status$
213 RewriteRule ^(.*)$ https://osm.org$1 [L,NE,R=permanent]
217 ServerName www.osm.org
219 Header always set Cache-Control "max-age=31536000"
220 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
224 RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
226 RewriteCond %{REQUEST_URI} !^/server-status$
227 RewriteRule ^(.*)$ https://www.osm.org$1 [L,NE,R=permanent]
231 ServerName openstreetmap.org
233 Header always set Cache-Control "max-age=31536000"
234 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
238 RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
240 RewriteCond %{REQUEST_URI} !^/server-status$
241 RewriteRule ^(.*)$ https://openstreetmap.org$1 [L,NE,R=permanent]
245 ServerName www.openstreetmap.org
248 Header always set Cache-Control "max-age=31536000"
249 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
253 RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
255 RewriteCond %{REQUEST_URI} !^/server-status$
256 RewriteRule ^(.*)$ https://www.openstreetmap.org$1 [L,NE,R=permanent]
260 ServerName openstreetmap.org
264 SSLCertificateFile /etc/ssl/certs/www.openstreetmap.org.pem
265 SSLCertificateKeyFile /etc/ssl/private/www.openstreetmap.org.key
267 Header always set Cache-Control "max-age=31536000"
268 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
270 RedirectPermanent / https://www.openstreetmap.org/
273 <Directory <%= node[:web][:base_directory] %>/rails/public>
276 RewriteCond "%{HTTP:Accept-encoding}" "gzip"
277 RewriteCond "%{REQUEST_FILENAME}\.gz" -s
278 RewriteRule "^(.*)\.(css|ico|js|json|svg|xml)$" "$1\.$2\.gz" [QSA]
280 RewriteRule "\.css\.gz$" "-" [T=text/css,E=no-gzip:1]
281 RewriteRule "\.ico\.gz$" "-" [T=image/vnd.microsoft.icon,E=no-gzip:1]
282 RewriteRule "\.js\.gz$" "-" [T=text/javascript,E=no-gzip:1]
283 RewriteRule "\.json\.gz$" "-" [T=application/json,E=no-gzip:1]
284 RewriteRule "\.svg\.gz$" "-" [T=image/svg+xml,E=no-gzip:1]
285 RewriteRule "\.xml\.gz$" "-" [T=application/xml,E=no-gzip:1]
287 <FilesMatch "\.(css|ico|js|json|svg|xml)\.gz$">
288 Header append Content-Encoding gzip
289 Header append Vary Accept-Encoding
293 <Directory /srv/www.openstreetmap.org/static>
297 <Directory /srv/www.openstreetmap.org/rails/app/assets>
301 <Directory /srv/www.openstreetmap.org/rails/vendor/assets>
305 <Directory /store/rails/stats>
309 <Directory /store/rails/user/image>
313 <Directory /store/rails/attachments>