Passenger setup on Developer Hosting
Solution

Setting up a Rails application  on your main domain with passenger.

--Upload your application to the server using either ftp/sftp or SSH or if you have your application under version control, checkout or clone your application to a folder in your home directory.

--Next, we need address apache/passenger about your application, this is done by setting a symbolic link from your public_html directory to your applications public directory. Here in the following example my application name is "myapp".

For example, if your application is in myapp then you would issue the following commands in an SSH session:

 (Make sure there is nothing you need in your /public_html directory as the following will remove everything in that directory)
  rm -rf ~/public_html
ln -s ~/myapp/public ~/public_html

--Now we need to enable passenger, this is done by creating a file called .htaccess in your application public directory. Add the following entries in the file ./public/.htaccess under  the location of your application root.

##RAILS-2.x.x##
RailsBaseURI /
PassengerAppRoot /home/myusername/myapp

##RAILS-3.x.x##
RackBaseURI /
PassengerAppRoot /home/myusername/myapp

--Next, Setup your database and a database user in cPanel, and update your config/database.yml with this new database name, user, and password.

--Migrate or import your database(The command to do this is "rake db:migrate" from your application root path)

--Make sure any third party gems you need are installed, you can view the gems installed by running gem list—local , if there is a gem missing, email support to request the gem to be installed.

You will now be able to access your rails application at your domain, if there are any deployment errors, passenger will display an error message which should help you determine how to fix the error. If you run into any problems, please open a ticket and we will be happy to help.




Article Details
Article ID: 55
Created On: 25 Aug 2009 05:02 PM

 Back
 Login  
Email Address:
Password:
 
 Search
 Article Options
Home | Submit a Ticket | Knowledgebase | News | Downloads
Language:

Website Design/Theme by MindWireMedia

Help Desk Software By Kayako eSupport v3.30.02