Another "remove /seaside/" thread (sorry)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Another "remove /seaside/" thread (sorry)

EstebanLM
Hi all, 
I know this is the most common "off-topic" in this list, but i did an extensive search, and can't find any answer:  how do i remove "/seaside/" part with lighttpd?
I couldn't figure how it has to be (and mod_redirect does not helps)   
Does anybody has already solved this?

Thanks in advance,
Esteban

--
"Querer es suscitar las paradojas"
Camus. El míto de Sísifo.
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Another "remove /seaside/" thread (sorry)

John Thornborrow
I'm not sure if lighttpd supports the <Location> directive, or these
modules, but this is what I use in Apache2:


=== httpd.conf ===

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so

ProxyRequests Off

<Location />
        ProxyPass http://127.0.0.1:9090/seaside/
        ProxyPassReverse http://127.0.0.1:9090/seaside/
</Location>

===

Then in /seaside/config for your respective app, remember to update the
hostname (if needed) and the basepath/baseurl to /<yourappname>

You can also change this to proxy to /seaside/yourapp directly.

HTH

John

www.pinesoft.co.uk

Esteban Lorenzano wrote:

> Hi all,
> I know this is the most common "off-topic" in this list, but i did an
> extensive search, and can't find any answer:  how do i remove "/seaside/"
> part with lighttpd?
> I couldn't figure how it has to be (and mod_redirect does not helps)
> Does anybody has already solved this?
>
> Thanks in advance,
> Esteban
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


Pinesoft Computers are registered in England, Registered number: 2914825. Registered office: 266-268 High Street, Waltham Cross, Herts, EN8 7EA



This message has been scanned for viruses by BlackSpider MailControl - www.blackspider.com

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside