I'm trying to deploy a simple Rails 3.2.8 app to a subdirectory on a remote Apache2/Passenger server.
I've followed the relevant Passenger instructions: on the server, the Rails app is stored in ~/public/foo2.com with a symlink to ~/public/foo.com/public/rails, so that the app can be served at foo.com/rails.
It's worth noting that I have a second virtual host file pointing foo2.com to the app and that, on my local machine, /etc/hosts points foo2.com to the server IP. In other words, the app is functional on the server when it's the root. The problem seems to be specifically related to the configuration of serving it from the subdirectory foo.com/rails.
Here's the Passenger error:
Error message:
No such file or directory - config.ru
Exception class:
Errno::ENOENT
Application root:
/home/aaron/public/foo.com/public
And the backtrace:
# File Line Location
0 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/utils.rb 675 in `lstat'
1 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/utils.rb 675 in `lower_privilege'
2 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/utils.rb 198 in `prepare_app_process'
3 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/rack/application_spawner.rb 156 in `block in initialize_server'
4 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/utils.rb 563 in `report_app_init_status'
5 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/rack/application_spawner.rb 154 in `initialize_server'
6 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/abstract_server.rb 204 in `start_synchronously'
7 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/abstract_server.rb 180 in `start'
8 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/rack/application_spawner.rb 129 in `start'
9 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/spawn_manager.rb 253 in `block (2 levels) in spawn_rack_application'
10 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/abstract_server_collection.rb 132 in `lookup_or_add'
11 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/spawn_manager.rb 246 in `block in spawn_rack_application'
12 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/abstract_server_collection.rb 82 in `block in synchronize'
13 prelude> 10:in `synchronize'
14 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/abstract_server_collection.rb 79 in `synchronize'
15 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/spawn_manager.rb 244 in `spawn_rack_application'
16 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/spawn_manager.rb 137 in `spawn_application'
17 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/spawn_manager.rb 275 in `handle_spawn_application'
18 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/abstract_server.rb 357 in `server_main_loop'
19 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/lib/phusion_passenger/abstract_server.rb 206 in `start_synchronously'
20 /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.17/helper-scripts/passenger-spawn-server 99 in `'
<VirtualHost *:80>
ServerName foo.com
ServerAlias www.foo.com
DirectoryIndex index.html index.php
DocumentRoot /home/aaron/public/foo.com/public
RackBaseURI /rails
<Directory /home/aaron/public/foo2.com>
Options -MultiViews
</Directory>
LogLevel warn
ErrorLog /home/aaron/public/foo.com/log/error.log
CustomLog /home/aaron/public/foo.com/log/access.log combined
</VirtualHost>
I've also restarted Apache since making these changes. Any help would be much appreciated!