]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/planet/templates/default/apache.erb
Add planet cookbook
[chef.git] / cookbooks / planet / templates / default / apache.erb
diff --git a/cookbooks/planet/templates/default/apache.erb b/cookbooks/planet/templates/default/apache.erb
new file mode 100644 (file)
index 0000000..d526b3f
--- /dev/null
@@ -0,0 +1,69 @@
+# DO NOT EDIT - This file is being maintained by Chef
+
+<VirtualHost *:80>
+        ServerName planet.openstreetmap.org
+        ServerAlias planet.osm.org
+        ServerAdmin webmaster@openstreetmap.org
+
+        CustomLog /var/log/apache2/planet.openstreetmap.org-access.log combined
+        ErrorLog /var/log/apache2/planet.openstreetmap.org-error.log
+
+        DocumentRoot /store/planet
+
+        <Directory /store/planet>
+                Options Indexes FollowSymLinks MultiViews ExecCGI
+                AllowOverride All
+                IndexIgnore .ht* . robots.txt HEADER.html HEADER.cgi logo.png style.css
+                IndexOptions FancyIndexing FoldersFirst NameWidth=* TrackModified SuppressHTMLPreamble
+                HeaderName HEADER.cgi
+                IndexOrderDefault Descending Date
+                AddType text/html .cgi
+                AddHandler cgi-script .cgi
+        </Directory>
+
+        ProxyPass /replication/streaming http://127.0.0.1:8080
+
+        <Location /replication/steaming>
+                Order deny,allow
+                Allow from all
+        </Location>
+
+        Redirect /pbf-experimental/    /pbf/
+
+       <IfModule mod_headers.c>
+               Header set Access-Control-Allow-Origin "*"
+       </IfModule>
+
+        RewriteEngine on
+        RewriteMap latestplanet prg:/usr/local/bin/apache-latest-planet-filename
+
+        #Direct, no redirect for the following
+        RewriteCond    %{REMOTE_ADDR}  ^193\.63\.              [OR]
+        RewriteCond    %{REMOTE_ADDR}  ^127\.                  [OR]
+        RewriteCond    %{REMOTE_ADDR}  ^10\.                   [OR]
+        RewriteCond    %{REMOTE_ADDR}  ^193\.1\.219\.88        [OR]
+        RewriteCond    %{REMOTE_ADDR}  ^193\.1\.193\.64        [OR]
+        RewriteCond     %{REMOTE_ADDR}  ^146\.169\.             [OR]
+        RewriteCond     %{REMOTE_ADDR}  ^129\.31\.              [OR]
+       RewriteCond     %{REMOTE_ADDR}  ^193\.60\.              [OR]
+       RewriteCond     %{REMOTE_ADDR}  ^193\.61\.              [OR]
+       RewriteCond     %{REMOTE_ADDR}  ^193\.62\.              [OR]
+       RewriteCond     %{REMOTE_ADDR}  ^193\.63\.              [OR]
+        RewriteCond    %{QUERY_STRING} nomirror
+        RewriteRule    .*      - [L]
+
+        RewriteRule     ^(/planet/planet\-latest\.osm\.bz2)$    ${latestplanet:$1}      [R,L]
+</VirtualHost>
+
+<VirtualHost *:443>
+        ServerName planet.openstreetmap.org
+        ServerAlias planet.osm.org
+        ServerAdmin webmaster@openstreetmap.org
+
+        SSLEngine on
+
+        CustomLog /var/log/apache2/planet.openstreetmap.org-access.log combined
+        ErrorLog /var/log/apache2/planet.openstreetmap.org-error.log
+
+        Redirect / http://planet.openstreetmap.org/
+</VirtualHost>