Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using rails 3.0.7 and I have apache2 + unicorn installed in the production environment.

I have my .conffile as follows

<VirtualHost *:80>
ServerName something.com

# Point this to your public folder of teambox
DocumentRoot /pal/public

RewriteEngine On

<Proxy balancer://unicornservers>
  BalancerMember http://127.0.0.1:5000
</Proxy>

# Redirect all non-static requests to unicorn
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ balancer://unicornservers%{REQUEST_URI} [P,QSA,L]

ProxyPass / balancer://unicornservers/
ProxyPassReverse / balancer://unicornservers/
ProxyPreserveHost on

<Proxy *>
  Order deny,allow
  Allow from all
</Proxy>

Tried RewriteCond %{REQUEST_FILENAME} !-f

But it seems that apache is not serving the static requests ( the files in the public directory). All the static requests also comes to rails. What configuration am I missing ?

share|improve this question
I would put Nginx instead of Apache. It is much better in handling static. – Sergio Tulentsev Dec 26 '11 at 11:36
Yup aware of that.. but business people..!!! can't help that part – Gaurav Shah Dec 26 '11 at 11:45
What about putting nginx in front of apache then? :-) – Sergio Tulentsev Dec 26 '11 at 11:47
can't do that either.. have to make it work just with apache + unicorn . :( – Gaurav Shah Dec 26 '11 at 11:51
are you able to access files more than 1 directory deep ? eg. /500.html goes to rails, but /images/rails.png doesn't get passed through to rails. – Luke Cowell Jan 14 '12 at 2:09
show 3 more comments

1 Answer

up vote 0 down vote accepted

I know this question is fairly dated, however... I was having exactly the same issue, and couldn't find a solution anywhere. I came across this question

Removing the following works.

ProxyPass / balancer://unicornservers/
ProxyPassReverse / balancer://unicornservers/
ProxyPreserveHost on
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.