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

A reverse proxy for Ruby on Rails

Results 23 rails-reverse-proxy issues
Sort by recently updated
recently updated
newest added

The bundle install section of the README.md is ```sh bundle ``` if leaving it that way is intentional then you can overlook this PR, otherwise, we should make it explicit...

Bumps [rails-html-sanitizer](https://github.com/rails/rails-html-sanitizer) from 1.4.2 to 1.4.3. Release notes Sourced from rails-html-sanitizer's releases. 1.4.3 / 2022-06-09 Address a possible XSS vulnerability with certain configurations of Rails::Html::Sanitizer. Prevent the combination of select...

dependencies

Bumps [rack](https://github.com/rack/rack) from 2.2.3 to 2.2.3.1. 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

in order to successfully proxy, i had to do a workaround ``` headers = { 'Host' => host, 'Accept' => request.headers.to_h['HTTP_ACCEPT'] } reverse_proxy "https://#{host}", headers: headers ``` instead of `reverse_proxy...

Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.1 to 1.13.6. Release notes Sourced from nokogiri's releases. 1.13.6 / 2022-05-08 Security [CRuby] Address CVE-2022-29181, improper handling of unexpected data types, related to untrusted inputs to...

dependencies

Hi Configured my rails application in controller with following: reverse_proxy api_path, verify_ssl: true, headers: { 'X-API-Key' => mykey }, cookies: cookies do |config| config.on_missing do |code, response| puts "Body:#{response.body.to_s} Code:#{code}...

Bumps [git](https://github.com/ruby-git/ruby-git) from 1.10.2 to 1.11.0. Release notes Sourced from git's releases. Release v1.11.0 Full Changelog 292087e Supress unneeded test output (#570) 19dfe5e Add support for fetch options "--force/-f" and...

dependencies

Bumps [actionpack](https://github.com/rails/rails) from 7.0.1 to 7.0.2.4. Release notes Sourced from actionpack's releases. 7.0.2.3 Active Support No changes. Active Model No changes. Active Record No changes. Action View No changes. Action...

dependencies

I am trying to reverse proxy to recurly. But I keep getting 404. There does not seem to be much information to debug about the detail. I tried different proxy...

Need a way to turn on verbose mode for debugging like `curl -i` or `curl -v` to see what the requests are sending. I have ``` logger.debug request.path logger.debug host...