On this page
class ActiveStorage::Blobs::ProxyController
Proxy files through application. This avoids having a redirect and makes files easier to cache.
Public Instance Methods
# File activestorage/app/controllers/active_storage/blobs/proxy_controller.rb, line 8
def show
http_cache_forever public: true do
set_content_headers_from @blob
stream @blob
end
end
© 2004–2020 David Heinemeier Hansson
Licensed under the MIT License.