Guruza search results for mod_proxy http://www.guruza.com/searches/show/736 Questions recently submitted to Guruza that match the query: mod_proxy Thu, 20 Nov 2008 12:37:23 -0800 $20.00 - How do I exclude URIs from being proxied by lighttpd? Got the answer on IR... http://www.guruza.com/question/442/reward-20.00 How do I exclude URIs from being proxied by lighttpd? Got the answer on IRC: weigon richcollins: $HTTP["url"] !~ "^/no-proxy/" { proxy.server = ... } Mon, 13 Nov 2006 11:55:00 -0800 $15.00 - I would like to use dynamic subdomains in a rails app. Please provide the li... http://www.guruza.com/question/256/reward-15.00 I would like to use dynamic subdomains in a rails app. Please provide the lighttpd configuration information required to make this work from inside of application.rb: class ApplicationController < ActionController::Base before_filter { |c| domain_tag = c.request.subdomains.first } end I have the following lighttpd.conf (that doesn't work but should): server.port = 80server.bind = "0.0.0.0"server.pid-file = "/tmp/logligrary.pid"#server.event-handler = "freebsd-kqueue" server.modules = ( "mod_rewrite", "mod_redirect", "mod_access", "mod_fastcgi", "mod_cgi", "mod_accesslog", "mod_proxy")server.document-root = "/home/awt/prod-loglibrary/public/"server.indexfiles = ( "dispatch.fcgi", "index.html" )accesslog.filename = "/home/awt/prod-loglibrary/log/lighttpd_access.log"server.errorlog = "/home/awt/prod-loglibrary/log/lighttpd_error.log"server.error-handler-404 = "/dispatch.fcgi"$HTTP["host"] =~ "^(.+\.)?loglibrary\.com$" { # your config here proxy.balance = "fair" proxy.server = ( "/" => ( ( "host" => "127.0.0.1", "port" => 8001 ), ( "host" => "127.0.0.1", "port" => 8002 ), ( "host" => "127.0.0.1", "port" => 8003 ), ( "host" => "127.0.0.1", "port" => 8004 ) ) )} Fri, 21 Jul 2006 19:13:40 -0700