作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 apache (2.4.17)、rvm 和乘客 (4.0.59) 将 rails 4.1.0 应用程序部署到我的生产环境中。
问题是,当我转到我的虚拟主机的 url (www.myapp.com) 时,我不断获得公共(public)目录的 apache 目录列表。但是:当我导航到我的 rails-app 内的路线时,例如; www.myapp.com/pages/1
乘客启动应用程序,一切都按预期工作。
这是我的乘客.conf:
# /etc/apache2/conf-enabled/passenger.conf
LoadModule passenger_module /home/sander/.rvm/gems/ruby-2.1.0-preview2/gems/passenger-4.0.59/buildout/apache2/mod_passenger.so
<IfModule mod_passenger.c>
PassengerRoot /home/sander/.rvm/gems/ruby-2.1.0-preview2/gems/passenger-4.0.59
PassengerDefaultRuby /home/sander/.rvm/gems/ruby-2.1.0-preview2/wrappers/ruby
</IfModule>
>> apache2ctl -M
...
passenger_module (shared)
<VirtualHost my-ip:80>
ServerName www.myapp.com
ServerAlias myapp.com
DocumentRoot /srv/www/rails/myapp/current/public
PassengerAppRoot /srv/www/rails/myapp/current
RailsEnv production
<Directory /srv/www/rails/myapp/current/public>
Require all granted
Options -MultiViews
</Directory>
</VirtualHost>
最佳答案
这个关于 serverfault 的答案现在帮助我解决了这个问题:
https://serverfault.com/questions/731814/apachepassenger-not-serving-the-root-of-the-sinatra-application
Kami 在 Apache 2.4.17 中结合 Phusion Passenger 的 autoindex 模块引用了一个错误。
我通过评论 Loadmodule ...
禁用了自动索引模块输入 /etc/apache2/mods-enabled/autoindex.load
重新启动 Apache,现在一切正常。
关于ruby-on-rails - 乘客从除根 url 之外的所有 url 开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33347007/
我是一名优秀的程序员,十分优秀!