]> git.openstreetmap.org Git - rails.git/blobdiff - config/lighttpd.conf
Add jpeg to mime-type lighttpd.conf table, fixed #2031
[rails.git] / config / lighttpd.conf
index 4735003d7c4b93d2638b40e905786412ef798ded..21bb09193051a0a85e88878adfa37508f1b5c880 100644 (file)
@@ -61,6 +61,7 @@ mimetype.assign = (
   ".css" => "text/css",
   ".gif" => "image/gif",
   ".html" => "text/html; charset=utf-8",
+  ".jpg" => "image/jpeg",
   ".js" => "application/x-javascript",
   ".png" => "image/png",
   ".swf" => "application/x-shockwave-flash",
@@ -151,8 +152,11 @@ else $HTTP["url"] =~ "^/api/0\.6/" {
 else $HTTP["url"] =~ "^/api/0\.[0-9]+/" {
   url.access-deny = ("")
 }
-else $HTTP["url"] =~ "^/geocoder/" {
-  server.error-handler-404 = "/dispatch.geocoder"
+else $HTTP["url"] =~ "^/geocoder/(search|description)_osm_namefinder$" {
+  server.error-handler-404 = "/dispatch.namefinder"
+}
+else $HTTP["url"] =~ "^/geocoder/(search|description)_geonames$" {
+  server.error-handler-404 = "/dispatch.geonames"
 }
 else $HTTP["url"] =~ "^/" {
   server.error-handler-404 = "/dispatch.web"
@@ -190,12 +194,18 @@ fastcgi.server = (
     ( "host" => "127.0.0.1", "port" => 8024, "check-local" => "disable" ),
     ( "host" => "127.0.0.1", "port" => 8025, "check-local" => "disable" )
   ),
-  ".geocoder" => (
+  ".namefinder" => (
     ( "host" => "127.0.0.1", "port" => 8026, "check-local" => "disable" ),
     ( "host" => "127.0.0.1", "port" => 8027, "check-local" => "disable" ),
     ( "host" => "127.0.0.1", "port" => 8028, "check-local" => "disable" ),
     ( "host" => "127.0.0.1", "port" => 8029, "check-local" => "disable" )
   ),
+  ".geonames" => (
+    ( "host" => "127.0.0.1", "port" => 8030, "check-local" => "disable" ),
+    ( "host" => "127.0.0.1", "port" => 8031, "check-local" => "disable" ),
+    ( "host" => "127.0.0.1", "port" => 8032, "check-local" => "disable" ),
+    ( "host" => "127.0.0.1", "port" => 8033, "check-local" => "disable" )
+  ),
   ".api" => (
     ( "host" => "127.0.0.1", "port" => 8030, "check-local" => "disable" ),
     ( "host" => "127.0.0.1", "port" => 8031, "check-local" => "disable" ),