[Seaside] seaside and apache

Ramon Leon ramonleon at cox.net
Wed Jul 5 15:16:13 UTC 2006


> 
> WAKom starton:9090
> 
> On apache in my httpd.conf I've got:
> 
> <VirtualHost *:80>
>    ProxyPass /seaside/ http://localhost:9090/seaside/
>    ProxyPassReverse /seaside/ http://localhost:9090/seaside/   
> </VirtualHost>
> 
> Apache is listening on port 80.
> 
> 
> Any ideas on what might be wrong ?
> 

Here's my local development setup, works great...

<VirtualHost *:80>
     ServerAdmin ramon.leon at sentorsa.com
     ServerName localhost
     RewriteEngine On
     ProxyVia Block
     ProxyPreserveHost On
     RewriteCond C:/Inetpub/websites/%{REQUEST_FILENAME} !-f
     RewriteRule ^/(.*)$ http://localhost:90/seaside/pier/$1 [P,L]
</VirtualHost>

Apache serves static files if they exist, else forwards the request to a 
seaside app.



More information about the Seaside mailing list