Если на вашем Apache установлен и включен модуль Passenger (он же mod_rails), настроить новое приложение Rails так же просто, как
<VirtualHost *:80>
# Admin email, Server Name (domain name) and any aliases
ServerAdmin webmaster@example.com
ServerName example.com
ServerAlias www.example.com
# Index file and Document Root (where the public files are located)
# DirectoryIndex index.html
DocumentRoot /path/to/app/public
# Custom log file locations
ErrorLog /path/to/log/example.com/error.log
CustomLog /path/to/log/example.com/access.log combined
</VirtualHost>
Некоторые важные заметки:
- Средой по умолчанию является «производство»
- убедитесь, что DocumentRoot указывает на папку / public вашего приложения, а не на корень приложения