X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f0c4e816b294c47907a803c5d8303ddaa67ea7fc..cfbdd3f7e1c688e2c875ded9fd847fcc1c3a4caf:/config/lighttpd.conf diff --git a/config/lighttpd.conf b/config/lighttpd.conf index ffe2ea4f3..317413f57 100644 --- a/config/lighttpd.conf +++ b/config/lighttpd.conf @@ -4,9 +4,11 @@ server.modules = ( "mod_access", "mod_accesslog", + "mod_cgi", "mod_compress", "mod_evasive", "mod_fastcgi", + "mod_redirect", "mod_status" ) @@ -40,6 +42,12 @@ $HTTP["url"] =~ "^/api/0.3/" { url.access-deny = ("") } # $HTTP["remoteip"] == "143.210.16.160" { url.access-deny = ("") } +# +# Rule to block tilesAtHome when somebody decides to queue vast +# number of tiles for rerendering +# +#$HTTP["useragent"] == "tilesAtHome" { url.access-deny = ("") } + # # Limit connections to 20 per IP address # @@ -74,6 +82,19 @@ compress.filetype = ( # compress.cache-dir = "/var/cache/lighttpd" +# +# Redirect trac and wiki requests to the right places +# +url.redirect = ( + "^/trac/(.*)$" => "http://trac.openstreetmap.org/$1", + "^/wiki/(.*)$" => "http://wiki.openstreetmap.org/$1" +) + +# +# Run anything with a .pl iextension as a CGI script +# +cgi.assign = ( ".pl" => "/usr/bin/perl" ) + # # Serve static content from the rails public area ourselves #