图片中并没有显示乘客的部署后/ Capistrano的nginx的服务器(Images not sh

2019-09-27 20:16发布

嗨,我是部署我的第一个Rails应用程序来使用Ubuntu服务器16 Capistrano一切都只是图像平滑在生产环境中无法显示。

在生产服务器上的图像都位于此路径: /myapp/current/public/assets

但是,如果我在浏览器中看看这个我破碎的图片链接给我这个(见图),这是一个破碎的链接标题图片。

奇怪的是,有一个.svg在文件/myapp/current/public/assets这是完全显示在浏览器中时,在下面的图片所示的路径

这是我的Capfile

# Load DSL and set up stages
 require "capistrano/setup"

# Include default deployment tasks
require "capistrano/deploy"


set :rbenv_type, :user # or :system, depends on your rbenv setup
set :rbenv_ruby, '2.3.1'


require 'capistrano/rbenv'

require 'capistrano/bundler'
require 'capistrano/rails'


# Load custom tasks from `lib/capistrano/tasks` if you have any defined
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }

这是config/deploy.rb

# config valid only for current version of Capistrano
lock '3.6.1'

set :application, 'myapp'
set :repo_url, 'git@github.com:DadiHall/myapp.git'


 # Default deploy_to directory is /var/www/my_app_name
 set :deploy_to, '/home/deploy/myapp'


 set :linked_files, %w{config/database.yml config/secrets.yml}
 set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system}

 namespace :deploy do

 desc 'Restart application'
 task :restart do
  on roles(:app), in: :sequence, wait: 5 do
   execute :touch, release_path.join('tmp/restart.txt')
  end
 end

 after :publishing, 'deploy:restart'
 after :finishing, 'deploy:cleanup'

结束

这里是environments/production.rb

Rails.application.configure do

config.cache_classes = true
config.consider_all_requests_local       = false
config.action_controller.perform_caching = true
config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
config.assets.js_compressor = :uglifier


 # Do not fallback to assets pipeline if a precompiled asset is missed.
 config.assets.compile = false

 config.assets.digest = true
 config.assets.initialize_on_precompile = false

 # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb


 config.log_level = :debug

 config.i18n.fallbacks = true

 config.active_support.deprecation = :notify

 config.log_formatter = ::Logger::Formatter.new

 config.active_record.dump_schema_after_migration = false

Braintree::Configuration.environment = :sandbox
Braintree::Configuration.merchant_id = ENV['merchant_id']
Braintree::Configuration.public_key = ENV['public_key']
Braintree::Configuration.private_key = ENV['private_key']

end

/etc/nginx/sites-enabled/default我有以下线

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    server_name mydomain.com;
    passenger_enabled on;
    rails_env    production;
    root         /home/deploy/myapp/current/public;

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

这是Nginx的错误日志

 [ 2016-09-28 06:25:02.4500 1594/7f900ee89700 age/Sha/ApiServerUtils.h:794 ]:  Log file reopened.
 [ 2016-09-28 09:45:43.7508 1597/7f2326502700 age/Cor/CoreMain.cpp:819 ]:   Checking whether to disconnect long-running connections for process 1978,  application /home/deploy/hlinreykdal/current/public (production)
App 21337 stdout: 
App 21405 stdout: 
[ 2016-09-28 10:30:31.0631 1597/7f2326502700 age/Cor/CoreMain.cpp:819 ]:  Checking whether to disconnect long-running connections for process 21405,  application /home/deploy/hlinreykdal/current/public (production)
App 23240 stdout: 
App 23308 stdout: 
[ 2016-09-28 10:41:40.1769 1597/7f2326502700 age/Cor/CoreMain.cpp:819 ]: Checking whether to disconnect long-running connections for process 23308, application /home/deploy/hlinreykdal/current/public (production)
App 24329 stdout: 
App 24397 stdout: 

我曾尝试bundle exec rake assets precompile有任何运气。

我已经部署并重新启动nginx一遍又一遍,有任何运气

我已经试过几乎所有的答案,在这里类似的问题上堆栈溢出,但似乎没有任何工作。

我失去了一些东西在这里?

我敢肯定,这个问题有事情做与资产管道,但我不知道如何解决它。

任何人都可以请看看这一点,并告诉我。

提前致谢

Answer 1:

好吧,如果有人遇到了类似的问题,你可能要检查出config.assets.compile在我来说,我只有到config /环境/ production.rb改变config.assets.compilefalse ,我把它改成true和现在一切工作....只花了两天时间才弄明白:d



Answer 2:

Note that public/assets is where the asset pipeline puts its stuff. If this is for static assets, I would put them in app/assets/images in order to use the asset pipeline, or choose another directory name.



Answer 3:

我使用HTML的img标签投放图片资产如下

<img src="/assets/AdminLTELogo.png" alt="AdminLTE Logo" class="brand-image im">

刚刚将其更改为以下和它的工作。

<%= image_tag 'AdminLTELogo.png' , alt: "AdminLTE Logo", class: "brand-image im %>

干杯。



文章来源: Images not showing after deployment with Passenger/Capistrano to Nginx server