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 running multiple websites on single server. When number of websites is 6 or more one of them still restarting (after time of inactivity).

The server is powerful and Passanger consumes less than 2% of the resources so this is no server issue.

Is there some nginx/passanger setting that set the maximum number of RoR application instances that may be simultaneously active?

My nginx configuration file:

worker_processes  1;

events {
    worker_connections  1024;
}

http {
    passenger_root /home/user/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.13;
    passenger_ruby /home/user/.rvm/wrappers/ruby-1.9.3-p194/ruby;

    include       mime.types;
    default_type  application/octet-stream;

    access_log  logs/access.log  main;

    sendfile        on;
    keepalive_timeout  65;

    ################ http://firstwebsite.com ###################

    server {
        listen 80;
        client_max_body_size 50m;
        server_name firstwebsite.com;
        access_log /home/user/logs/firstwebsite.com/access.log;
        error_log /home/user/logs/firstwebsite.com/error.log;
        root /home/user/www/firstwebsite.com/current/public/;

        location ~* \.(ico|jpg|gif|png|css|js|swf|html)$ {
          if (-f $request_filename) { 
            expires max;
            break;
          }
        }
        passenger_enabled on;
    }

    ################ http://secondwebsite.com #################
    ################ http://otherwebsites.com #################
    ### like the firstwebsite.com ####
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.