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 have install Nginx server and configured all needed stuff, but currently I'm having error with 403 forbidden error. Log says:

2010/12/28 17:38:59 [error] 28664#0: *27 directory index of "/home/appuser/test_app" is forbidden, client: xxx.xxx.xxx.xxx, server: localhost, request: "GET / HTTP/1.1", host: "xxx.xxx.xxx.xxx"

My config:

worker_processes  1;

events {
    worker_connections  1024;
}

http {
    passenger_root /usr/lib64/ruby/gems/1.8/gems/passenger-3.0.2;
    passenger_ruby /usr/bin/ruby;
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    keepalive_timeout  65;

    server {
        listen       80;
        server_name  localhost;
        root /home/appuser/test_app;
        passenger_enabled on;
    }
}

Any solutions?

share|improve this question
This is a question for serverfault.com – ring0 Dec 29 '10 at 11:00

4 Answers

up vote 5 down vote accepted

change

/home/appuser/test_app

to

/home/appuser/test_app/public
share|improve this answer

You're trying to access "/" which will try to provide a list of files under /home/appuser/test_app, but this is not allowed in your config. You need to add:

autoindex on;

Check http://wiki.nginx.org/HttpAutoindexModule or http://justinbkay.org/2007/12/23/nginx-enable-directory-listing

But probably you do not want to do that, you want "/" to access some application... you have to give nginx more info about this, probably in a location section.

share|improve this answer

The nginx root directive should point to the 'public' directory of the app.

share|improve this answer
doesn't this only affect static file serving? – lulalala Jul 6 '12 at 4:04

By any chance are you using rvm to install Ruby? Judging by your paths, you aren't. But in case you are, you need to be careful with the passenger_* configuration options. Take a look here: Rails 3.1, nginx, Passenger directory index forbidden

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.