6

私が実行している現在のアプリは、ubuntuサーバーで本番環境で問題なく動作しています。しかし、アプリをデプロイするためにRed Hat Enterprise Linux 5.5サーバーを構成する必要があり、いくつかの問題が発生しています。まず第一にいくつかの仕様:

  • Railsバージョン:3.2.11
  • ルビー:1.9.3-p194
  • httpサーバーnginx+ユニコーン
  • rbenvを使用したruby環境の管理
  • デプロイ方法:capistrano

私のnginx.confとunicornの設定ファイルはRyanBateのビデオに基づいています。だから私はほとんどすべてを構成することができました。デプロイしたり、データベースに接続したりできます。ただし、アプリのページにアクセスすると、すべてのアセットを読み込めません。また、コンソールに入ると、403Forbiddenエラーが原因で失敗したと表示されます。チェックしたところ、アセットは正しい場所にあります:apps / my_app / shared/assets。しかし、私はこの403エラーを受け取り続けます。

私がこれまでに試したこと:

  • 親フォルダーと実際のアセットファイルへのアクセス許可を確認しました。それらはすべて、少なくともすべての人の読み取り権限を持っていました
  • config.assets.compiletrueに変更されました
  • ここでの手順に従って、nginxとunicornを使用してデプロイをレールします:403 forbidden error 、 conf.dのデフォルトファイルを削除し、カスタムnginx構成ファイルを... /sites-enabledではなく/etc/nginx/conf.dにシンボリックリンクすることをお勧めします

なぜ私が403を取得しているのか考えやアイデアはありますか?

編集1:/etc/nginx/nginx.confファイルを追加

これが役立つかどうかはわかりませんが、これはnginx.confファイル(/ etc / nginxの下)がどのように見えるか(私のカスタムnginxファイルではありません):

events {
  worker_connections  1024;
}


#----------------------------------------------------------------------
# HTTP Core Module
#
#   http://wiki.nginx.org/NginxHttpCoreModule 
#
#----------------------------------------------------------------------

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

  log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                    '$status $body_bytes_sent "$http_referer" '
                    '"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;

sendfile        on;
#tcp_nopush     on;

#keepalive_timeout  0;
keepalive_timeout  65;

#gzip  on;

#
# The default server
#
server {
    listen       80;
    server_name  _;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    error_page  404              /404.html;
    location = /404.html {
        root   /usr/share/nginx/html;
    }

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

# Load config files from the /etc/nginx/conf.d directory
include /etc/nginx/conf.d/*.conf;

}

また、/ etc / nginxの下にnginx.confファイルとnginx.conf.defaultファイルがあることに気づきましたが、誰かが違いを知っていますか?多分問題はそこにある可能性がありますか?

編集2:nginxログファイルからエントリを追加します

だから私はこれをnginxログファイルで見つけました。chmodだから多分それは?で修正できる許可の問題です

2013/03/24 20:50:53 [error] 10851#0: *5 open() "/home/webapp/apps/my_app/current/public/assets/application-db22bc3811b126e586f5e82e794e7ee4.css" failed (13: Permission denied)

編集3:/etc/nginx/nginx.confを更新

user  nginx;
worker_processes  2;

# error_log  logs/error.log;
# error_log  logs/error.log  notice;
# error_log  logs/error.log  info;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;

events {
  worker_connections  1024;
}

http {
  include       mime.types;
  default_type  application/octet-stream;

  log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

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

  sendfile        on;
  #tcp_nopush     on;

  keepalive_timeout  60;

  gzip  on;

  include /etc/nginx/conf.d/*.conf;

  # INSIDE THE /etc/ngin/conf.d/*.conf FILE #

  server {
    listen 80 default deferred;
    # server_name example.com;
    root /home/webapp/apps/my_app/current/public;

    location ^~ /assets/ {
      gzip_static on;
      expires max;
      add_header Cache-Control public;
    }

    try_files $uri/index.html $uri @unicorn;
    location @unicorn {
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $http_host;
      proxy_redirect off;
      proxy_pass http://unicorn;
    }

    error_page 500 502 503 504 /500.html;
    client_max_body_size 4G;
    keepalive_timeout 10;
  }

}
4

1 に答える 1

3

だから私はこれを修正することができました。この記事のアドバイスの一部http://nginxlibrary.com/403-forbidden-error/

すべてのアセットファイルにつながるすべてのディレクトリについて、ディレクトリのアクセス許可をに設定しchmod 775ます。次に、 apps / my_app / shared / asset内のすべてのアセット(application.jsなど)に対して、ファイルにこの権限を付与しchmod 775ました。

そして、それはトリックをしました。私がリンクした記事の中で、著者は、アセットファイルに、読み取りだけでなく、読み取りと実行の両方のアクセス許可が必要であると述べています。

于 2013-03-25T03:12:06.500 に答える