--- lib/thin/backends/base.rb +++ lib/thin/backends/base.rb @@ -72,7 +72,8 @@ module Thin # so you can do crazy stuff that require godlike powers here. def config # See http://rubyeventmachine.com/pub/rdoc/files/EPOLL.html - EventMachine.epoll + # Disable epoll to use poll and try to fix chroot issue + # EventMachine.epoll # Set the maximum number of socket descriptors that the server may open. # The process needs to have required privilege to set it higher the 1024 on