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 ####
}