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'm getting the following error in nginx (with a 403) when I visit .com:

[error] 5384#0: *1 directory index of "/u/apps/<app-name>/current/public/" is forbidden

I'm on Ubuntu 10.04 and I can't for the life of me get nginx, Passenger, Rails 3.1, and Capistrano to play nicely.

I'm deploying to /u with Capistrano. Everything in /u is 755, owned by the app user.

/u/apps//current/public/ has all my assets, the favicon, and everything else you'd expect.

When I add autoindex on to nginx.conf I get a listing of the public/ directory, which leads me to believe that I don't have a permission problem.

My nginx.conf file is default expect for:

server {
    listen 80;
    server_name <app-name>.com;
    passenger_enabled on;
    root /u/apps/<app-name>/current/public/;
}

And my Capistrano deploy.rb file has nothing unusual.

Any ideas why the rails app doesn't seem to be starting?

share|improve this question

3 Answers

up vote 5 down vote accepted

Alright, I answered my own question. I was missing passenger_ruby and passenger_root configurations in my nginx.conf file. Note that the passenger_ruby path needs to be the wrapper if you're using RVM.

passenger_root /usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.9;
passenger_ruby /usr/local/rvm/wrappers/ruby-1.9.2-p290/ruby;
share|improve this answer
1  
Well, if this solved your problem, go ahead and accept your own answer. – Nightfirecat Nov 15 '11 at 20:35
Done - thanks for the tip :) – alexlod Nov 30 '11 at 7:11
Any idea why it has to be the wrappers ? I don't really know what are the different directories about in RVM but why not bin instead ? – Geoffrey Hug Nov 12 '12 at 11:39

If you already have passenger_root and passenger_ruby in your nginx.conf, but having this error, you must have some location blocks. Then you must specify passenger_enabled on; inside each location block.

share|improve this answer
This dig the trick for me, I forgot to add the passenger_enabled on to the sites configuration. – Joe Feb 5 at 19:29
Not true in my case. I have no location blocks, but I still get this error. – robguinness Feb 13 at 20:39

I have also had this problem "directory index of /home/jialezhang/ror/depot/public/" is forbidden,and my nginx.conf have already added passenger_rootandpassenger_ruby,hoping for help.

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.