Hey there,<br><br><br><div><span class="gmail_quote">On 11/8/06, <b class="gmail_sendername">Christian Billen</b> &lt;<a href="mailto:cbillen@warmlyyours.com">cbillen@warmlyyours.com</a>&gt; 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 &quot;Forbidden&quot; 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>&lt;VirtualHost <a href="http://192.168.100.100">192.168.100.100
</a>&gt;<br>&nbsp;&nbsp;ServerName <a href="http://myprojects.warmlyyours.com">myprojects.warmlyyours.com</a><br>&nbsp;&nbsp;DocumentRoot /var/www/approot/public<br>&nbsp;&nbsp;&lt;Directory &quot;/var/www/approot/public&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Options FollowSymLinks
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AllowOverride None<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Order allow,deny<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Allow from all<br>&nbsp;&nbsp;&lt;/Directory&gt;<br><br>&nbsp;&nbsp;# Configure mongrel_cluster<br>&nbsp;&nbsp;&lt;Proxy balancer://mongrel_cluster&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8000">
http://127.0.0.1:8000</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8001">http://127.0.0.1:8001</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8002">http://127.0.0.1:8002</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8003">
http://127.0.0.1:8003</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8004">http://127.0.0.1:8004</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8005">http://127.0.0.1:8005</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8006">
http://127.0.0.1:8006</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8007">http://127.0.0.1:8007</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8008">http://127.0.0.1:8008</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8009">
http://127.0.0.1:8009</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8010">http://127.0.0.1:8010</a><br>&nbsp;&nbsp;&nbsp;&nbsp;BalancerMember <a href="http://127.0.0.1:8011">http://127.0.0.1:8011</a><br>&nbsp;&nbsp;&lt;/Proxy&gt;<br><br>&nbsp;&nbsp;RewriteEngine On
<br><br>&nbsp;&nbsp;RewriteRule ^(.*/)?.svn/ - [F,L]<br><br>&nbsp;&nbsp;RewriteRule ^/$ /index.html [QSA]<br><br>&nbsp;&nbsp;RewriteRule ^([^.]+)$ $1.html [QSA]<br><br>&nbsp;&nbsp;RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f<br>&nbsp;&nbsp;RewriteRule ^/(.*)$ balancer://mongrel_cluster%{REQUEST_URI} [P,QSA,L]
<br><br>&lt;/VirtualHost&gt;<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>