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=429,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 RedirectPermanent /stats https://planet.openstreetmap.org/statistics
145 # Pass authentication related headers to cgimap
152 # Pass supported calls to cgimap
154 RewriteRule ^/api/0\.6/map(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
155 RewriteCond %{REQUEST_METHOD} ^(HEAD|GET)$
156 RewriteRule ^/api/0\.6/(node|way|relation|changeset)/[0-9]+(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
157 RewriteRule ^/api/0\.6/(node|way|relation)/[0-9]+/history(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
158 RewriteRule ^/api/0\.6/(node|way|relation)/[0-9]+/relations(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
159 RewriteRule ^/api/0\.6/node/[0-9]+/ways(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
160 RewriteRule ^/api/0\.6/(way|relation)/[0-9]+/full(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
161 RewriteRule ^/api/0\.6/(nodes|ways|relations)(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
162 RewriteRule ^/api/0\.6/changeset/[0-9]+/(upload|download)(\.json|\.xml)?$ fcgi://127.0.0.1:8000$0 [P]
165 # Redirect trac and wiki requests to the right places
167 RedirectPermanent /trac/ https://trac.openstreetmap.org/
168 RedirectPermanent /wiki/ https://wiki.openstreetmap.org/
171 # Redirect requests for various images to the right place
173 RedirectPermanent /images/osm_logo.png https://www.openstreetmap.org/assets/osm_logo.png
174 RedirectPermanent /images/cc_button.png https://www.openstreetmap.org/assets/cc_button.png
177 # Redirect api requests made to www.openstreetmap.org to api.openstreetmap.org
179 # RewriteCond %{HTTP_HOST} =www.openstreetmap.org
180 # RewriteRule ^/api/(.*)$ https://api.openstreetmap.org/api/$1 [L,NE,R=permanent]
183 # Redirect non-api requests made to api.openstreetmap.org to www.openstreetmap.org
185 RewriteCond %{HTTP_HOST} =api.openstreetmap.org
186 RewriteCond %{REQUEST_URI} !^/api/
187 RewriteRule ^(.*)$ https://www.openstreetmap.org$1 [L,NE,R=permanent]
191 ServerName openstreetmap.org.uk
192 ServerAlias www.openstreetmap.org.uk
193 ServerAlias openstreetmap.co.uk
194 ServerAlias www.openstreetmap.co.uk
196 RedirectPermanent /events.ics http://calendar.openstreetmap.org.uk/events.ics
197 RedirectPermanent / https://www.openstreetmap.org/
203 Header always set Cache-Control "max-age=31536000"
204 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
208 RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
210 RewriteCond %{REQUEST_URI} !^/server-status$
211 RewriteRule ^(.*)$ https://osm.org$1 [L,NE,R=permanent]
215 ServerName www.osm.org
217 Header always set Cache-Control "max-age=31536000"
218 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
222 RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
224 RewriteCond %{REQUEST_URI} !^/server-status$
225 RewriteRule ^(.*)$ https://www.osm.org$1 [L,NE,R=permanent]
229 ServerName openstreetmap.org
231 Header always set Cache-Control "max-age=31536000"
232 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
236 RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
238 RewriteCond %{REQUEST_URI} !^/server-status$
239 RewriteRule ^(.*)$ https://openstreetmap.org$1 [L,NE,R=permanent]
243 ServerName www.openstreetmap.org
246 Header always set Cache-Control "max-age=31536000"
247 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
251 RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
253 RewriteCond %{REQUEST_URI} !^/server-status$
254 RewriteRule ^(.*)$ https://www.openstreetmap.org$1 [L,NE,R=permanent]
258 ServerName openstreetmap.org
262 SSLCertificateFile /etc/ssl/certs/www.openstreetmap.org.pem
263 SSLCertificateKeyFile /etc/ssl/private/www.openstreetmap.org.key
265 Header always set Cache-Control "max-age=31536000"
266 Header always set Expires "Tue, 19 Jan 2038 03:14:07 GMT"
268 RedirectPermanent / https://www.openstreetmap.org/
271 <Directory <%= node[:web][:base_directory] %>/rails/public>
274 RewriteCond "%{HTTP:Accept-encoding}" "gzip"
275 RewriteCond "%{REQUEST_FILENAME}\.gz" -s
276 RewriteRule "^(.*)\.(css|ico|js|json|svg|xml)$" "$1\.$2\.gz" [QSA]
278 RewriteRule "\.css\.gz$" "-" [T=text/css,E=no-gzip:1]
279 RewriteRule "\.ico\.gz$" "-" [T=image/vnd.microsoft.icon,E=no-gzip:1]
280 RewriteRule "\.js\.gz$" "-" [T=text/javascript,E=no-gzip:1]
281 RewriteRule "\.json\.gz$" "-" [T=application/json,E=no-gzip:1]
282 RewriteRule "\.svg\.gz$" "-" [T=image/svg+xml,E=no-gzip:1]
283 RewriteRule "\.xml\.gz$" "-" [T=application/xml,E=no-gzip:1]
285 <FilesMatch "\.(css|ico|js|json|svg|xml)\.gz$">
286 Header append Content-Encoding gzip
287 Header append Vary Accept-Encoding
291 <Directory /srv/www.openstreetmap.org/static>
295 <Directory /srv/www.openstreetmap.org/rails/app/assets>
299 <Directory /srv/www.openstreetmap.org/rails/vendor/assets>