Skip to content

Instantly share code, notes, and snippets.

@lynndylanhurley
Created May 8, 2015 21:10
Show Gist options
  • Save lynndylanhurley/cfcee7de02042f54868f to your computer and use it in GitHub Desktop.
Save lynndylanhurley/cfcee7de02042f54868f to your computer and use it in GitHub Desktop.
# proxy API requests for old IE
config.middleware.use Rack::StreamingProxy::Proxy do |request|
if request.path.start_with?('/proxy')
proxy_path = request.path.sub %r{^/proxy}, ''
"//#{Figaro.env.api_domain}/api/v1#{proxy_path}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment