Hey there,<br><br><br><div><span class="gmail_quote">On 11/8/06, <b class="gmail_sendername">Christian Billen</b> <<a href="mailto:cbillen@warmlyyours.com">cbillen@warmlyyours.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Good morning everyone,<br><br>I am running apache 2.2.3 compiled from source and proxy load balancer as<br>described on the mongrel site.<br><br>I have a total of three sites, this setup works really well for two of them<br>
but for one of them, I keep getting "Forbidden" errors and this error in the<br>apache logs:<br><br>[warn] proxy: No protocol handler was valid for the URL /. If you are using<br>a DSO version of mod_proxy, make sure the proxy submodules are included in
<br>the configuration using LoadModule.<br><br>This problem is starting to drive me nuts because I compared the setup of<br>the other sites to this one and it is exactly the same, also if I did point<br>the proxy to one of the other site, it works.
<br><br>So there's something specific about this site in rails that tips it off but<br>my knowledge there is limited.<br><br>I've also checked the permission for the www-data user that my apache runs<br>under and all checks out and is similar there.
<br><br>Any other areas I could look at?<br><br><br>Here's the virtual host config<br><br><br>Listen <a href="http://192.168.100.100">192.168.100.100</a><br><VirtualHost <a href="http://192.168.100.100">192.168.100.100
</a>><br> ServerName <a href="http://myprojects.warmlyyours.com">myprojects.warmlyyours.com</a><br> DocumentRoot /var/www/approot/public<br> <Directory "/var/www/approot/public"><br> Options FollowSymLinks
<br> AllowOverride None<br> Order allow,deny<br> Allow from all<br> </Directory><br><br> # Configure mongrel_cluster<br> <Proxy balancer://mongrel_cluster><br> BalancerMember <a href="http://127.0.0.1:8000">
http://127.0.0.1:8000</a><br> BalancerMember <a href="http://127.0.0.1:8001">http://127.0.0.1:8001</a><br> BalancerMember <a href="http://127.0.0.1:8002">http://127.0.0.1:8002</a><br> BalancerMember <a href="http://127.0.0.1:8003">
http://127.0.0.1:8003</a><br> BalancerMember <a href="http://127.0.0.1:8004">http://127.0.0.1:8004</a><br> BalancerMember <a href="http://127.0.0.1:8005">http://127.0.0.1:8005</a><br> BalancerMember <a href="http://127.0.0.1:8006">
http://127.0.0.1:8006</a><br> BalancerMember <a href="http://127.0.0.1:8007">http://127.0.0.1:8007</a><br> BalancerMember <a href="http://127.0.0.1:8008">http://127.0.0.1:8008</a><br> BalancerMember <a href="http://127.0.0.1:8009">
http://127.0.0.1:8009</a><br> BalancerMember <a href="http://127.0.0.1:8010">http://127.0.0.1:8010</a><br> BalancerMember <a href="http://127.0.0.1:8011">http://127.0.0.1:8011</a><br> </Proxy><br><br> RewriteEngine On
<br><br> RewriteRule ^(.*/)?.svn/ - [F,L]<br><br> RewriteRule ^/$ /index.html [QSA]<br><br> RewriteRule ^([^.]+)$ $1.html [QSA]<br><br> RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f<br> RewriteRule ^/(.*)$ balancer://mongrel_cluster%{REQUEST_URI} [P,QSA,L]
<br><br></VirtualHost><br><br>_______________________________________________<br>Mongrel-users mailing list<br><a href="mailto:Mongrel-users@rubyforge.org">Mongrel-users@rubyforge.org</a><br><a href="http://rubyforge.org/mailman/listinfo/mongrel-users">
http://rubyforge.org/mailman/listinfo/mongrel-users</a><br></blockquote></div><br>