Displaying 5 results from an estimated 5 matches for "proxy_cluster".
2006 Dec 16
5
trying to add another app
...l,
I have an app working great with apache2 and mongrel_cluster.
However, I''m trying to run another application and now when I go to
app1.comit falls to
app2.com and the opposite. That''s probably because I messed up somewhere
with the cluster.
this is the content of my conf.d/app1.proxy_cluster.conf:
<Proxy balancer://mongrel_cluster>
BalancerMember http://app1.com:8000
BalancerMember http://app1.com:8001
BalancerMember http://app1.com:8002
</Proxy>
and this is my conf.d/app2.proxy_cluster.conf:
<Proxy balancer://mongrel_cluster>
BalancerMember http://app2.com:...
2006 Nov 13
1
rails+apache2+mongrel_cluster
hey all,
I managed to configure a mongrel+apache2 but now I would like to do a
mongrel_cluster. For now I have a sites-available/myapp but when it
comes to mongrel_cluster I need to set up myapp.common,
myapp.proxy_cluster.conf and
myapp.proxy_frontend.conf and I couldn''t find a tutorial that explain
where should those file go. is it in conf.d or sites-available/ or
else?
thanx in advance.
Pat
2008 Jun 16
3
Apache rewrites with mongrel
...h mongrelcluster.
It?s urgend for me, because the server has an loadaverage about 10
:-(((((
Ok so I?m using 3 mongrel-server on an mongrelcluster. The Loadbalancer
ist apache
I think, that my rewrites are not correct. Please can anybody check my
rewrites ?
That?s in my /etc/apache2/conf.d/rails.proxy_cluster.conf
<Proxy balancer://mongrel_cluster>
BalancerMember http://127.0.0.1:4712
BalancerMember http://127.0.0.1:4713
BalancerMember http://127.0.0.1:4714
</Proxy>
that?s in my /etc/apache2/sites-enabled/000-rails
RewriteEngine On
# Deflate
AddOutputFilterBy...
2007 Jan 03
12
Frustrating Error
I am followint this article,
http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/
...but I keep getting this error in the log...not sure what to try next...
** Daemonized, any open files are closed. Look at log/mongrel.8000.pid and
log/mongrel.log for info.
** Starting Mongrel listening at 127.0.0.1:8000
2006 Nov 13
1
Service Temporarily Unavailable when using apache
...index.html [QSA]
# Rewrite to check for Rails cached page
RewriteRule ^([^.]+)$ $1.html [QSA]
# Redirect all non-static requests to cluster
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ balancer://mongrel_cluster%{REQUEST_URI} [P,QSA,L]
and this is my testapp.proxy_cluster.conf:
<Proxy balancer://mongrel_cluster>
BalancerMember http://127.0.0.1:8000
BalancerMember http://127.0.0.1:8001
BalancerMember http://127.0.0.1:8002
</Proxy>
now when I start my mongrel_cluster I get the index page but I get a
Service Temporarily Unavailable when I click on th...