gpt4 book ai didi

ruby-on-rails - Nginx 乘客不可见应用程序问题

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:06 25 4
gpt4 key购买 nike

我有: Ubuntu 12.04 长期支持版
ruby-1.9.3-p194
rails 3.2.7

我正在尝试通过 Nginx + Passenger 访问我的 Rails 应用程序。

/opt/nginx/conf/nginx.conf 文件是:

user  test;
worker_processes 1;

events {
worker_connections 1024;
}

http {
passenger_root /home/test/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.14;
passenger_ruby /home/test/.rvm/wrappers/ruby-1.9.3-p194/ruby;

include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;

server {
listen 80;
server_name 10.11.11.178;

root /efiling/public;
passenger_enabled on;

location / {
root html;
index index.html index.htm;
}
....

当我输入一个链接 10.11.11.178 我得到 Welcome to nginx!
但我期待获得 Rails 应用程序默认页面。

怎么了?提前致谢。


@Jashwant。首先,我删除了@Brandon 提到的行。其次,我从 my_app\public 文件夹中删除了 index.html 文件。

最佳答案

尝试从配置中删除以下内容:

    location / {
root html;
index index.html index.htm;
}

关于ruby-on-rails - Nginx 乘客不可见应用程序问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11723010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com