rack-reverse-proxy icon indicating copy to clipboard operation
rack-reverse-proxy copied to clipboard

A Reverse Proxy for Rack

Results 32 rack-reverse-proxy issues
Sort by recently updated
recently updated
newest added

Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.3.6 to 2.8.0. Changelog Sourced from addressable's changelog. Addressable 2.8.0 fixes ReDoS vulnerability in Addressable::Template#match no longer replaces + with spaces in queries for non-http(s) schemes fixed...

dependencies

Bumps [rack](https://github.com/rack/rack) from 1.4.1 to 2.2.3. Changelog Sourced from rack's changelog. Changelog All notable changes to this project will be documented in this file. For info on how to format...

dependencies

Updates the requirements on [rake](https://github.com/ruby/rake) to permit the latest version. Changelog *Sourced from [rake's changelog](https://github.com/ruby/rake/blob/master/History.rdoc).* > === 12.3.3 > > ==== Bug fixes > > * Use the application's name...

dependencies

Bumps [ffi](https://github.com/ffi/ffi) from 1.9.0 to 1.11.1. Changelog *Sourced from [ffi's changelog](https://github.com/ffi/ffi/blob/master/CHANGELOG.md).* > 1.11.1 / 2019-05-20 > ------------------- > > Changed: > * Raise required ruby version to >=2.0. [#699](https://github-redirect.dependabot.com/ffi/ffi/issues/699), [#700](https://github-redirect.dependabot.com/ffi/ffi/issues/700)...

dependencies

I have setup a rake task to refresh the sitemap of an application, and it's hosted in S3, because we're using heroku. Can I use this to reverse proxy in...

I have a domain "https://www.example.com". I've setup my config.ru to do the simple forward shown in the wiki ``` ruby reverse_proxy /^\/blog(\/*.*)$/, 'http://myblog.tumblr.com$1' ``` However, when I try to visit...

Thank you for this great gem. I would like to show the contents from a URL with subdirectory at the http://example.com/ (Rails app). I configured config/application.rb as following, but this...

This prevents duplicate headers downstream with other proxies. I was getting two status headers being returned. `status` and `Status`. This makes rack-reverse-proxy` play nicely with others that expect headers to...

This fixes a bug where the source request's port was being dropped when replacing the response's location header.

I noticed that the read timeout option specified in the README was not working as expected so I passed through the timeout option to make the README correct and the...