Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have setup passenger + apache in ec2 instance for deploying multiple ruby on rails applications under same domain using suburi,

After dns mapping when i try:

    http://app1.mywebsite.com

    It works!

        This is the default web page for this server.

        The web server software is running but no content has been added, yet.

I have deployed 3 applications and also created symlinks, Be‎low is my apache.conf file configuration changes done for the rails apps.

        LoadModule passenger_module /home/ubuntu/.rvm/gems/ruby-1.9.3-p327/gems/passenger-3.0.18/ext/apache2/mod_passenger.so
           PassengerRoot /home/ubuntu/.rvm/gems/ruby-1.9.3-p327/gems/passenger-3.0.18
           PassengerRuby /home/ubuntu/.rvm/wrappers/ruby-1.9.3-p327/ruby

        <VirtualHost *:80>
            ServerName mywebsite.com
            DocumentRoot /home/ubuntu/webdev
            RailsEnv production
            <Directory /home/ubuntu/webdev>
            Allow from all
            </Directory>

            RailsBaseURI /product
            <Directory /home/ubuntu/webdev/product>
            Options -MultiViews
            </Directory>

            RailsBaseURI /product1
            <Directory /home/ubuntu/webdev/product1>
            Options -MultiViews
            </Directory>

            RailsBaseURI /product2
            <Directory /home/ubuntu/webdev/product2>
            Options -MultiViews
            </Directory>

When i enter mywebsite.com/product the rails application loads, but when i enter mywebsite.com/product1 or mywebsite.com/product1 the following error is displayed

            There may be a syntax error in the application's code. Please check for such errors and fix them.
            A required library may not installed. Please install all libraries that this application requires.
            The application may not be properly configured. Please check whether all configuration files are written correctly, fix any incorrect configurations, and restart this application.
            A service that the application relies on (such as the database server or the Ferret search engine server) may not have been started. Please start that service.


           Further information about the error may have been written to the application's log file. Please check it in order to analyse the problem.

        Error message:
            uninitialized constant Whatever
        Exception class:
            NameError

I have used gemset to install the gems and bundle runs successfully with the message

Your bundle is complete! It was installed into ./vendor/bundle
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.