[Seaside] Seaside and servers...

Wilkes Joiner wilkesjoiner at gmail.com
Thu Mar 2 13:07:11 UTC 2006


On 3/1/06, Rich Warren <rwmlist at gmail.com> wrote:
> I gather the "default" deployment is to place seaside behind another
> web server. Most people seem to use Apache. Is it possible to use
> lighttpd?

Here are the relevant parts of my lighttpd.conf file:
server.modules              = (
            "mod_access",
            "mod_alias",
            "mod_accesslog",
	     "mod_proxy"
 )

# For sub-domain proxy
$HTTP["host"] =~ "seasideapp.mydomain.com" {
	proxy.server = ("" => (("host" => "127.0.0.1", "port" => 8181)) )
}

or
# for directory proxy, i.e. http://myhost.com/seaside/myapp
$HTTP["url"] =~ "^/seaside/" {
	proxy.server = ("" => (("host" => "127.0.0.1", "port" => 8181)) )
}

see http://lighttpd.net/documentation/proxy.html for more details.

Hope this helps,
Wilkes


More information about the Seaside mailing list