find /websites/xx/shared/bundle/ruby/2.6.0/gems/sidekiq-5.1.3 -name "*.css"
/websites/xx/shared/bundle/ruby/2.6.0/gems/sidekiq-5.1.3/web/assets/stylesheets/application-rtl.css
/websites/xx/shared/bundle/ruby/2.6.0/gems/sidekiq-5.1.3/web/assets/stylesheets/bootstrap-rtl.min.css
/websites/xx/shared/bundle/ruby/2.6.0/gems/sidekiq-5.1.3/web/assets/stylesheets/bootstrap.css
/websites/xx/shared/bundle/ruby/2.6.0/gems/sidekiq-5.1.3/web/assets/stylesheets/application.css
And they appear to have the appropriate content. Yet the file served are empty.
I am using nginx + passenger.
Phusion Passenger 6.0.2
Ruby 2.6.3
My nginx file (which has not changed so far and I don't think the pb comes from there)
server {
listen 80 default;
server_name
;
root /websites/xxx/current/public;
error_page 500 502 503 504 /500.html;
passenger_enabled on;
passenger_app_env production;
passenger_min_instances 2;
passenger_set_header HOST $translated_host;
client_max_body_size 50M;
keepalive_timeout 10;
}