Bluehost Web Hosting Help

Ruby on Rails Setup



Create your Rails Application

  1. Install whatever version of rails you want (provided it's compatible with ruby 1.9.3) as a local user: gem install rails --no-rdoc --no-ri

  2. Create a new Rails application.

    Rails 3.x

    rails new ~/APPNAME -d mysql
Note: You can specify the version using "-v" (e.g. gem install rails -v 3.0.11 --no-rdoc --no-ri)
You may also use Rails v. 2.x for your app using the following syntax

Access Your RoR Application

If you are using a subdomain you can use the following steps to create the subdomain.

  1. Log into your bluehost control panel
  2. Select 'Subdomains' from the 'Domains' section
  3. In the small form that loads, type in the name of your subdomain (example 'APPNAME')
  4. From the drop down box select which domain you want to create that subdomain on.
  5. Make sure the "Document Root" box points to the folder you want the subdomain to be tied to. In this case, we want it to point to the public_html/APPNAME folder that we just created.
You will then need to create a Symlink to the public folder of your application. To do this simply enter the following command:

ln -s ~/APPNAME/public ~/public_html/APPNAME

Setup the .htaccess file

You'll need this in public folder for the app which sets everything up including where to look for user-installed gems. To add this simply run the following commands:
  1. rm ~/APPNAME/public/.htaccess
  2. vim ~/APPNAME/public/.htaccess
  3. Press i to edit the file.
  4. Paste in the code from below.
  5. Enter :wq
  6. Press Enter to save the changes.
<IfModule mod_passenger.c>
Options -MultiViews
PassengerResolveSymlinksInDocumentRoot on
#Set this to whatever environment you'll be running in
RailsEnv production
RackBaseURI /
SetEnv GEM_HOME /home1/examplec/ruby/gems
</IfModule>

Configure your .bashrc

You will need to add the following to your ~/.bashrc file.

~/.bashrc file

export HPATH=$HOME
export GEM_HOME=$HPATH/ruby/gems
export GEM_PATH=$GEM_HOME:/lib64/ruby/gems/1.9.3
export GEM_CACHE=$GEM_HOME/cache
export PATH=$PATH:$HPATH/ruby/gems/bin
export PATH=$PATH:$HPATH/ruby/gems


Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

Ruby on Rails, Gems

What Ruby on Rails version and Gems are installed?

Ruby on Rails 404 Errors

My Ruby on Rails installation keeps displaying a '404 Not Found' error.

Ruby on Rails application generates a 500 - Premature end of script error

When I attempt to execute my Ruby on Rails application I receive "500- Premature end of script."

Related Help Content

Ruby on Rails: How-to install Redmine

How to install Redmine a Ruby on Rails application

Ruby Gems Installation

How do I install my own Ruby Gems?

Rails Troubleshooting

Rails Troubleshooting!

Path to Ruby

What is the path to Ruby?

Email Application Setup - Outlook 2016 for Windows

How to setup an email account in Outlook 2016 for Windows

Email Application Setup - Outlook 2016 for Mac

How to setup an email account in Outlook 2016 for Mac

VPS or Dedicated - Installing and using RoR with Passenger

This article will explain how to use RoR through passenger on a VPS or Dedicated hosting account

FTP Setup Using Dreamweaver 8

How do I setup Dreamweaver 8 for FTP?