- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 www.myserver.com
下的子目录 /a
中部署一个应用程序,按照 Passenger 文档中的步骤进行操作: http://www.modrails.com/documentation/Users%20guide.html#deploying_rails_to_sub_uri
这似乎可行,但 Rails 路由现在都需要额外的子目录 /a
,这样才能尝试访问根目录 www.myserver.com/a
给我一个 RoutingError。我试过设置 relative_url_root
,但这没有任何改变。我是否需要将前缀 /a
添加到我的路由文件中的每条路由?
最佳答案
嗯……对我来说一切似乎都很好。刚试过了。
您确定您遵循的是 Nginx 说明而不是 Apache 说明吗?
确保您执行了软链接(soft link)并更改了“根”应用程序...说明中说要使其成为减去“公共(public)”部分的绝对路径:
http{ ...
server {
listen 80;
server_name g.local;
root /home/bernie/development/test; <- forgot to change this the first time I tried
passenger_enabled on;
passenger_base_uri /rails;
}
...
这是最终结果的图像...无需修改路线:
alt text http://img190.imageshack.us/img190/8898/32380822.png
这是 Nginx 的说明:
http://www.modrails.com/documentation/Users%20guide%20Nginx.html#deploying_rails_to_sub_uri
关于ruby-on-rails - 乘客+nginx : Hosting a Rails application in a subdirectory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2189140/
我是一名优秀的程序员,十分优秀!