I have a Rails 3.2 app that runs on AWS Elastic Beanstalk on one of their standard Ruby 1.9.3 AMIs, which uses Phusion Passenger Standalone (3.0.17) with Nginx on CentOS. The app has some functionality that behaves outside of the standard request-response cycle and thus Passenger's tmp cleaner daemon is deleting /tmp/passenger-standalone.* directories that are necessary for some underlying HTTP requests to work.
I don't really have a clean solution for this, but I'm thinking about increasing the intervals at which the tmp cleaner daemon runs to do GC, which I think will mostly eleviate my problem. I'm not finding much documentation on how to do this--I don't think it occurs through chron. How do I configure the intervals at which Passenger's tmp cleaner daemon runs?
Thanks in advance...