How to Create a Sinatra Ruby Application


Last modified: February 22, 2024

Overview

Warning:
  • Because WebPros International, LLC doesn’t develop or ship Sinatra Ruby applications, cPanel Technical Support can’t help you install them. We aren’t responsible for any data loss.
  • We recommend that only experienced system administrators perform these steps.
  • Before you begin, your hosting provider must enable the feature and install EasyApache 4 RPMs.

This document describes how to install a Sinatra web application. You can use Sinatra to quickly create web applications on the Ruby platform. Then, you can register them in cPanel’s Application Manager interface (cPanel » Home » Software » Application Manager).

Note:
  • We recommend that you perform the steps in this document via the command line as a cPanel user unless the step specifies otherwise.

  • You can also use cPanel’s Terminal interface (cPanel » Home » Advanced » Terminal).

  • To use this feature, the cPanel account must possess compiler access in WHM’s Compiler Access interface (WHM » Home » Security Center » Compiler Access). If the account does not possess compiler access, the system will return an error similar to the following message:

make: execvp: gcc: Permission denied

For more information, read Sinatra’s documentation.

Install Sinatra

Pre-installation settings

Before you begin, make certain that the following EasyApache 4 RPMs exist on your server:

  • ea-ruby27-mod_passenger

    Note:

    If you enable this module, the system will disable Apache’s mod_userdir module.

  • ea-ruby27-ruby-devel

  • ea-apache24-mod_env

    Note:

    The ea-apache24-mod_env module allows you to add environment variables when you register your application. For more information about environment variables, read our Application Manager documentation.

If you need to install these RPMs, use WHM’s EasyApache 4 interface (WHM » Home » Software » EasyApache 4) or run the following command as the root user:

yum install ea-ruby27-mod_passenger ea-ruby27-ruby-devel ea-apache24-mod_env

Install the sinatra gem

To install the sinatra Ruby gem, run the following command:

scl enable ea-ruby27 'gem install sinatra'

If you do not wish to use the scl utility, perform the following steps to install the sinatra Ruby gem:

  1. Log in to the server as a cPanel user.

  2. Add the following line to the rc file (for example, the /home/user/.bashrc file):

source /opt/cpanel/ea-ruby27/enable
  1. Log out and then log back in.

  2. Run the gem install sinatra command.

Create the application directory path

After you install the sinatra Ruby gem, create the application’s directory path, relative to your home directory. For example:

/home/username/application

Create the application’s Ruby files

After you create the application’s directory path, add the Ruby application file. To do this, perform the following steps:

  1. Navigate to the application’s directory

  2. Create the app.rb file and add the code for the application to execute. For example:

    1
    2
    3
    4
    5
    6
    7
    
    require 'sinatra/base'
    
    class Fools < Sinatra::Base
      get '/' do
        'Fools Rush In'
      end
    end
    For more information about how to add processes to the app.rb file, read Sinatra’s documentation.

  3. Create the config.ru file with the following content:

    1
    2
    3
    
    require File.absolute_path("app.rb")
    
    run Fools

Register the application

After you set the file permissions, register the application. To do this, use either of the following methods:

Restart apache

Important:

After you create the application’s Apache configuration, restart Apache. To do this, run the following command as the root user:

/usr/local/cpanel/scripts/restartsrv_httpd

After Apache restarts, you can access the application in cPanel’s Application Manager interface (cPanel » Home » Software » Application Manager).

Additional Documentation