2015-11-25 11:18:44 -05:00
|
|
|
app = Rails.application
|
2015-02-20 06:44:07 -05:00
|
|
|
|
2015-11-26 08:48:01 -05:00
|
|
|
if app.config.serve_static_files
|
2015-02-20 17:30:06 -05:00
|
|
|
# The `ActionDispatch::Static` middleware intercepts requests for static files
|
|
|
|
# by checking if they exist in the `/public` directory.
|
|
|
|
# We're replacing it with our `Gitlab::Middleware::Static` that does the same,
|
|
|
|
# except ignoring `/uploads`, letting those go through to the GitLab Rails app.
|
|
|
|
|
2015-02-20 06:44:07 -05:00
|
|
|
app.config.middleware.swap(
|
|
|
|
ActionDispatch::Static,
|
|
|
|
Gitlab::Middleware::Static,
|
|
|
|
app.paths["public"].first,
|
|
|
|
app.config.static_cache_control
|
|
|
|
)
|
2015-02-20 08:39:35 -05:00
|
|
|
end
|