Hey beach bums,<br>I have been trying to run a seaside image behind an apache2 reverse proxy without success, in spite that have read and based my virtualhost configuration on the instractions given by both Ramón on his blog and on the new seaside book.  I am obviously making a mistake but I can&#39;t tell where.<br>
Basically I can access static files (served by my virtual host) but the rewrites for the seaside server produce the Forbidden error (403) with the loged message that is on the subject.<br>It somehow seems to be a permissions issue on / <br>
<br>My virtual host file looks like this now:<br><br>&lt;VirtualHost *:80&gt;<br><br>    # set server name<br>    ServerName <a href="http://myapp.mydomain.com">myapp.mydomain.com</a><br>    ProxyPreserveHost On<br>    ProxyRequests Off<br>
    RewriteEngine On<br>    UseCanonicalName Off<br><br>    # configure static file serving<br>    DocumentRoot /var/www/myapp<br>    &lt;Directory /var/www/myapp&gt;<br>        Order deny,allow<br>        Allow from all<br>
    &lt;/Directory&gt;<br><br>    # rewrite incoming requests<br>    RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f<br>    RewriteRule ^/(.*)$ <a href="http://localhost:8080/myapp/$1">http://localhost:8080/myapp/$1</a> [proxy,last]<br>
<br>    # http compression<br>    DeflateCompressionLevel 5<br>    SetOutputFilter DEFLATE<br>    AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css<br>
    BrowserMatch ^Mozilla/4 gzip-only-text/html<br>    BrowserMatch ^Mozilla/4.0[678] no-gzip<br>    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html<br><br>    ErrorLog  /var/log/apache2/myapp.error.log<br>    CustomLog /var/log/apache2/myapp.access.log combined<br>
<br>&lt;/VirtualHost&gt;<br><br><br>I will appreciate very much any hint,  thanks.<br><br>r.<br><br>