0

我很抱歉問什麼似乎是這樣一個簡單的問題,一次又一次地問。導軌靜態圖像沒有出現

我使用Rails 4.2.3構建了一個小應用程序。一切都在本地工作,所以我想將其部署到AWS與彈性青苗及以下設置:64位Linux的亞馬遜2016.03 v2.1.6運行的Ruby 2.3(彪馬)

之前,我部署我運行:

rake assets:precompile RAILS_ENV=production 

我然後將這些文件提交到git並使用eb deploy將文件推送到EC2實例上。

一些工作的事情:

  • 當我ssh到該實例,我看到所有的預編譯的資產在/ var /應用/電流/公/資產
  • CSS一切看起來正確的
  • Coffeescripts正在正常運行

但是,靜態圖像或通過回形針上傳的靜態圖像都沒有出現,正如我所期望的。

在production.rb我有這樣一行:

config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present? 

我可以證實,關鍵是不是在我的ENV變量通過進入控制檯:

irb(main):001:0> ENV['RAILS_SERVE_STATIC_FILES'] 
=> nil 

這使我相信,這些文件的服務應該由nginx處理。我可以確認nginx正在運行,但坦率地說,我不知道它是如何配置的。

[[email protected] assets]$ ps waux | grep nginx 
root  2800 0.0 0.4 109364 4192 ?  Ss Oct08 0:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf 
nginx  2801 0.0 0.6 109820 6672 ?  S Oct08 0:09 nginx: worker process 
ec2-user 21321 0.0 0.2 110456 2092 pts/0 S+ 23:02 0:00 grep --color=auto nginx 

我「覺得」我應該修改我的.ebextensions文件來自動做幾件事情,當我部署,但這就是我被困在那裏。有什麼建議麼?

/etc/nginx/nginx.conf

# For more information on configuration, see: 
# * Official English Documentation: http://nginx.org/en/docs/ 
# * Official Russian Documentation: http://nginx.org/ru/docs/ 

user nginx; 
worker_processes auto; 
error_log /var/log/nginx/error.log; 
pid /var/run/nginx.pid; 

events { 
    worker_connections 1024; 
} 

http { 
    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; 
    tcp_nodelay   on; 
    keepalive_timeout 65; 
    types_hash_max_size 2048; 

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

    # Load modular configuration files from the /etc/nginx/conf.d directory. 
    # See http://nginx.org/en/docs/ngx_core_module.html#include 
    # for more information. 
    include /etc/nginx/conf.d/*.conf; 

    index index.html index.htm; 

    server { 
     listen  80 ; 
     listen  [::]:80 ; 
     server_name localhost; 
     root   /usr/share/nginx/html; 

     # Load configuration files for the default server block. 
     include /etc/nginx/default.d/*.conf; 

     location/{ 
     } 

     # redirect server error pages to the static page /40x.html 
     # 
     error_page 404 /404.html; 
      location = /40x.html { 
     } 

     # redirect server error pages to the static page /50x.html 
     # 
     error_page 500 502 503 504 /50x.html; 
      location = /50x.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; 
     #} 
    } 

# Settings for a TLS enabled server. 
# 
# server { 
#  listen  443 ssl; 
#  listen  [::]:443 ssl; 
#  server_name localhost; 
#  root   /usr/share/nginx/html; 
# 
#  ssl_certificate "/etc/pki/nginx/server.crt"; 
#  ssl_certificate_key "/etc/pki/nginx/private/server.key"; 
#  # It is *strongly* recommended to generate unique DH parameters 
#  # Generate them with: openssl dhparam -out /etc/pki/nginx/dhparams.pem 2048 
#  #ssl_dhparam "/etc/pki/nginx/dhparams.pem"; 
#  ssl_session_cache shared:SSL:1m; 
#  ssl_session_timeout 10m; 
#  ssl_protocols TLSv1 TLSv1.1 TLSv1.2; 
#  ssl_ciphers HIGH:SEED:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!RSAPSK:!aDH:!aECDH:!EDH-DSS-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA:!SRP; 
#  ssl_prefer_server_ciphers on; 
# 
#  # Load configuration files for the default server block. 
#  include /etc/nginx/default.d/*.conf; 
# 
#  location/{ 
#  } 
# 
#  error_page 404 /404.html; 
#   location = /40x.html { 
#  } 
# 
#  error_page 500 502 503 504 /50x.html; 
#   location = /50x.html { 
#  } 
# } 

} 

/etc/nginx/conf.d/virtual.conf

# 
# A virtual host using mix of IP-, name-, and port-based configuration 
# 

#server { 
# listen  8000; 
# listen  somename:8080; 
# server_name somename alias another.alias; 

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

的/ etc/nginx的/ CONF。 d/webapp_healthd.conf

upstream my_app { 
    server unix:///var/run/puma/my_app.sock; 
} 

log_format healthd '$msec"$uri"' 
       '$status"$request_time"$upstream_response_time"' 
       '$http_x_forwarded_for'; 

server { 
    listen 80; 
    server_name _ localhost; # need to listen to localhost for worker tier 

    if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})T(\d{2})") { 
    set $year $1; 
    set $month $2; 
    set $day $3; 
    set $hour $4; 
    } 

    access_log /var/log/nginx/access.log main; 
    access_log /var/log/nginx/healthd/application.log.$year-$month-$day-$hour healthd; 

    location/{ 
    proxy_pass http://my_app; # match the name of upstream directive which is defined above 
    proxy_set_header Host $host; 
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
    } 

    location /assets { 
    alias /var/app/current/public/assets; 
    gzip_static on; 
    gzip on; 
    expires max; 
    add_header Cache-Control public; 
    } 

    location /public { 
    alias /var/app/current/public; 
    gzip_static on; 
    gzip on; 
    expires max; 
    add_header Cache-Control public; 
    } 
} 
+0

請出示在網站致力於nginx的主機配置站點啓用 – num8er

+0

我剛纔添加的/ etc /nginx/nginx.conf文章末尾。如果這不是您要查找的內容,請告知您的位置。 –

+0

這不是什麼檢查/etc/nginx/conf.d/中有服務器{}指令的文件,你的問題是nginx不服務器你的靜態文件夾或可能看錯路徑。 – num8er

回答

2

修復webapp_healthd.conf使nginx的在public文件夾中的文件服務解決,如果不能或不存在,則proxy_pass到您的應用程序:

upstream my_app { 
    server unix:///var/run/puma/my_app.sock; 
} 

server { 
    listen 80; 
    server_name _; # need to listen to localhost for worker tier 

    if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})T(\d{2})") { 
    set $year $1; 
    set $month $2; 
    set $day $3; 
    set $hour $4; 
    } 

    access_log /var/log/nginx/healthd/application.log.$year-$month-$day-$hour healthd; 

    index index.html index.htm; 

    location @app { 
     log_not_found off; 
     access_log off; 
     proxy_pass http://my_app; # proxy passing to upstream 
     proxy_http_version 1.1; 
     proxy_set_header X-Real-IP $remote_addr; 
     proxy_set_header Host $host; 
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
     proxy_set_header Upgrade $http_upgrade; 
     proxy_set_header Connection 'upgrade'; 
     proxy_cache_bypass $http_upgrade; 
    } 

    root /var/app/current/public; 

    location/{ 
     try_files $uri $uri/ @app; # tries to serve static files if not will ask @app 
    } 
} 
+0

sudo服務nginx停止/ sudo vi webapp_healthd.conf/sudo服務nginx啓動 –

+0

啓動nginx:nginx:[警告]衝突的服務器名稱「localhost」在0.0.0.0:80,被忽略 –

+0

現在一切都是空白的: ) –