I'm trying to set up a mod_proxy - mongrel combination, but somehow, apache/mod_proxy is unable to access mongrel locally. The following is my configuration for mod_proxy:
Code: Select all
ProxyRequests Off
ProxyPreserveHost On
<Location />
ProxyPass http://localhost:3000/
ProxyPassReverse http://localhost:3000/
Order deny,allow
Allow from all
</Location>
Mongrel/Rails ist running just fine, because I can access it from my browser, and even with lynx on the server.
However, I get the following error when trying to use the proxy:
Code: Select all
[error] [client 127.0.0.1] Invalid Content-Length
PS: Oh, and the server is running Plesk to configure vhosts, if thats important.