Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

nginx + passenger + rails - 403 forbidden error

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?

like image 532
thesis Avatar asked Dec 28 '10 15:12

thesis


2 Answers

change

/home/appuser/test_app

to

/home/appuser/test_app/public
like image 142
Tiankui Avatar answered Sep 21 '22 18:09

Tiankui


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

like image 29
lbadura Avatar answered Sep 20 '22 18:09

lbadura