vote up 0 vote down star

I am using the Apache Proxy balancer directive to hook up a set of thin servers (for Rails).

Like so:

  <Proxy balancer://thinservers>
    BalancerMember http://127.0.0.1:5000 route=thin0
    BalancerMember http://127.0.0.1:5001 route=thin1
    BalancerMember http://127.0.0.1:5002 route=thin2
  </Proxy>

However, thin can also be configured to use unix domain sockets.

So I want to be able to do something like:

  <Proxy balancer://thinservers>
    BalancerMember unix://tmp/thin.0.sock route=thin0
    BalancerMember unix://tmp/thin.1.sock route=thin1
    BalancerMember unix://tmp/thin.2.sock route=thin2
  </Proxy>

But Apache is not taking it. Apparently nginx can do it, but I really want to use Apache.

Is there a way?

flag

OK, it seems that no-one here knows the answer to this. Likely the answer is no. Can anyone suggest an appropriate Apache board where I can ask this question before wrapping it up? – Mike Berrow Nov 3 at 16:35
Maybe you should try asking on serverfault. – Mihai A Nov 3 at 18:12

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.