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 simple application which works well on Apache but gives me error 403 after moving to Nginx.

Here is my configuration:

server {

    server_name  myapp.com;
    access_log  off;
    root /home/www/myapp/public;
    autoindex on;
    passenger_enabled on;
    rails_env production;

}

Nginx is running from www-data user which has r+x permissions to all the folders on the path to the application.

Nginx is 0.8.54 and Passenver is 3.0.5.

Any ideas what can be wrong?

Obviously no reasonable errors in nginx log file (I increased logging level to maximum) and also nothing in rails log files.

share|improve this question

1 Answer

You're missing the http port:

server {
  listen 80;
   ...
}
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.