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? -Rich- _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
No, it is completely impossible. Furthermore, both projects being open
source, it will remain impossible forever. For ever ever? For EVER ever! Avi, the documentation should feature carry this warning: "Warning: this product may cause impotence, and/or full frontal labotomy, when used with lighttpd. Your offspring will be stunted, blithering idiots for generations if you so much as attempt it." ... Yes, of course it works. Anything that can intercept HTTP and redirect it to another port will work fine. The requirements are pretty minimal: mostly that you can think and that you actually try it. Jeremy > 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? > > -Rich- > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside GPG PUBLIC KEY: 0xA2B36CE5 _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Rich Warren
On 3/1/06, Rich Warren <[hidden email]> 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 _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Thanks,
That's exactly what I needed. -Rich- On Mar 2, 2006, at 3:07 AM, Wilkes Joiner wrote: > On 3/1/06, Rich Warren <[hidden email]> 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 > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |