[Seaside] Re: Apache with Seaside and VW 7.8 nc

squeakman squeakman at gmail.com
Sat Aug 4 19:14:30 UTC 2012


On 04/08/2012 1:59 PM, squeakman wrote:

> -------
> NameVirtualHost *:80
>
>
> <VirtualHost *:80>
>
>      # set server name
>      ProxyPreserveHost On
>      ServerName localhost
>
>      # configure static file serving
>      DocumentRoot /seaside/web
>      <Directory /seaside/web>
>          Order deny,allow
>          Allow from all
>      </Directory>
>
>      # rewrite incoming requests
>      RewriteEngine On
>      RewriteCond /seaside/web%{REQUEST_FILENAME} !-f
>     RewriteRule ^/(.*)$ http://localhost:7777/seaside/$1 [proxy,last]
>
> </VirtualHost>
> --------
>

Just as I feared, shortly after submitting this question I have what 
looks like a solution.

I changed the RewriteRule to:
      RewriteRule ^/(.*)$ http://localhost:7777/$1 [proxy,last]

stripping out the "seaside" bit.  This seems to work.

Thanks,
Frank






More information about the seaside mailing list