d0622b79d8
Also marks a few things as uncovered, and removes an unused class.
26 lines
746 B
Ruby
26 lines
746 B
Ruby
# This Rack middleware is intended to proxy the webpack assets directory to the
|
|
# webpack-dev-server. It is only intended for use in development.
|
|
|
|
# :nocov:
|
|
module Gitlab
|
|
module Middleware
|
|
class WebpackProxy < Rack::Proxy
|
|
def initialize(app = nil, opts = {})
|
|
@proxy_host = opts.fetch(:proxy_host, 'localhost')
|
|
@proxy_port = opts.fetch(:proxy_port, 3808)
|
|
@proxy_path = opts[:proxy_path] if opts[:proxy_path]
|
|
|
|
super(app, backend: "http://#{@proxy_host}:#{@proxy_port}", **opts)
|
|
end
|
|
|
|
def perform_request(env)
|
|
if @proxy_path && env['PATH_INFO'].start_with?("/#{@proxy_path}")
|
|
super(env)
|
|
else
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
# :nocov:
|