I have written how to solve this issue that everyone running on a Debian based Linux with the latest apache will face, as a comment on the seaside book:<br><br><a href="http://book.seaside.st/book/advanced/deployment/deployment-apache/configure-apache">http://book.seaside.st/book/advanced/deployment/deployment-apache/configure-apache</a><br>
<br>Cheers<br><br>r.<br><br><br><div class="gmail_quote">On Fri, Sep 18, 2009 at 12:24 AM, Ramiro Diaz Trepat <span dir="ltr">&lt;<a href="mailto:ramiro@diaztrepat.name">ramiro@diaztrepat.name</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
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" target="_blank">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" target="_blank">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><font color="#888888"><br>r.<br><br>
</font></blockquote></div><br>