Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Should the following directives go in the http block of nginx.conf (/opt/nginx/conf/nginx.conf) or the individual site blocks (/opt/nginx/conf/sites-available/mydomain.com)

passenger_spawn_method smart;
rails_app_spawner_idle_time 0;
rails_framework_spawner_idle_time 0;
passenger_pool_idle_time 1000;
share|improve this question

closed as off topic by casperOne Mar 4 at 13:38

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

In case someone else has this same conundrum... these directives can go in the http{} block in nginx.conf and then will take effect for all your server{} virtual hosts.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.