What is the difference between using Phusion Passenger or just using WEBrick (e.g., rails s) in terms of a production environment?
I understand that Phusion Passenger installs a module on either Apache or Nginx, but is it a full fledged ruby server? Is it just forwarding traffic back to a WEBrick instance?
If Passenger is just forwarding traffic, back to any ruby server, why not just use rvmsudo rails server -d -p80
?