On Fri, Sep 24, 2004 at 04:42:08PM +0100, Richard Lewis wrote:
============================================================== /var/webapps/cursus/cursus.apache.conf:
<VirtualHost ****:80> ServerName www.cursus.uea.ac.uk ServerAlias cursus.uea.ac.uk ServerAlias www.cursus ProxyRequests off ProxyPass / http://localhost:8081/cocoon/cursus/ ProxyPassReverse / http://localhost:8081/cocoon/cursus/ ProxyPass /styles http://localhost:8081/cocoon/cursus/styles ProxyPassReverse /styles http://localhost:8081/cocoon/cursus/styles
</VirtualHost>
Right - looks like you're not allowing Proxy requests to me... add in to the virtual hosts a block something like: <Proxy *> Order Allow,Deny Allow from all </Proxy>
Cheers,