I'm using a shared host from textdrive.com. The host uses Virtualmin as web hosting control panel. I would like to deploy a rails app on mysite.com.
I tried to use Phusion Passenger/mod_rails but I don't have the permission to modify httpd.conf to enable Passenger and/or add <VirtualHost *:80>
Can anyone have a solution for deploying using Phusion Passenger or can you suggest better deploying solutions?
Currently I can only come up with 2 work arrounds:
- SSH, pull code then run "rails s" manually with port 11222 (available port get from virtualmin control panel)(these can be accomplished using Capistrano). Set proxy from "/" to "127.0.0.1:11222" for the apache server using virtualmin control panel. The site now is available at mysite.com
- Deploy the Rails app with Lighttpd with given port. Proxy apache to lighttpd.
Many thanks.