与Passenger一起部署Nginx时出现Rails Sub URI 403禁止的错误 [英] Rails Sub URI 403 Forbidden Errors when Deploying with Passenger for Nginx

查看:116
本文介绍了与Passenger一起部署Nginx时出现Rails Sub URI 403禁止的错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用以下配置运行运行服务器",并收到如下所示的错误

I am trying to run Run the Server with the following configuration and am getting an error as shown below

user www-data;
worker_processes 4;
pid /run/nginx.pid;

events {
        worker_connections 768;
        # multi_accept on;
}

http {

        ##
        # Basic Settings
        ##

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        # server_tokens off;

        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;

        include /etc/nginx/mime.types;
        default_type application/octet-stream;

        ##
        # Logging Settings
        ##

        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        ##
        # Gzip Settings
        ##

        gzip on;
        gzip_disable "msie6";

        # gzip_vary on;
        # gzip_proxied any;
        # gzip_comp_level 6;
        # gzip_buffers 16 8k;
        # gzip_http_version 1.1;
        # gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

        ##
        # nginx-naxsi config
        ##
        # Uncomment it if you installed nginx-naxsi
        ##

        # include /etc/nginx/naxsi_core.rules;

        ##
        # Phusion Passenger config
        ##
        # Uncomment it if you installed passenger or passenger-enterprise
        ##

        #Web SERVER
        server {
            server_name 104.236.218.36;
            listen 80;
            root /var/www/noise/public;
            passenger_enabled on;
        }

        # API SERVER
        server {
            server_name 104.236.218.36;
            listen 3333;
            root /var/www/noise-api/public;
            passenger_enabled on;
        }

        #passenger_root /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini;
        #passenger_ruby /usr/bin/ruby;
        passenger_root /usr/local/rvm/gems/ruby-2.2.0/gems/passenger-4.0.58;
    passenger_ruby /usr/local/rvm/gems/ruby-2.2.0/wrappers/ruby;

        ##
        # Virtual Host Configs
        ##

        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;
}


# mail {
#       # See sample authentication script at:
#       # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
#       # auth_http localhost/auth.php;
#       # pop3_capabilities "TOP" "USER";
#       # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
#       server {
#               listen     localhost:110;
#               protocol   pop3;
#               proxy      on;
#       }
#
#       server {
#               listen     localhost:143;
#               protocol   imap;
#               proxy      on;
#       }
# }

错误

2015/02/02 06:16:06 [error] 13528#0: *3 directory index of "/var/www/noise/public/" is forbidden, client: 122.178.204.27, server: 104.236.218.36, request: "GET / HTTP/1.1", ho$

我遇到了这个文章,但无法弄清楚如何为我的设置应用解决方案.我没有文件夹

I came across this Article but am not able to figure out how to apply the solution for my set up. i do not have a folder

root@99atoms-staging:/var/www/noise# cd /websites/
-bash: cd: /websites/: No such file or directory

推荐答案

如果您使用的是RVM,请使用以下passenger_root和passenger_ruby:

If you are using RVM then use this passenger_root and passenger_ruby:

passenger_root /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini;
passenger_ruby /home/sachin/.rvm/gems/ruby-2.2.0/wrappers/ruby;

然后重新加载nginx服务器.

Then reload nginx server.

这篇关于与Passenger一起部署Nginx时出现Rails Sub URI 403禁止的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆