Go to file
BoHung Chiu c201300f6b add support for unix socket 2023-04-20 23:44:22 +08:00
lib add support for unix socket 2023-04-20 23:44:22 +08:00
.document Initial commit to rails-reverse-proxy. 2015-06-04 19:22:09 -07:00
.gitignore Ignore local vendor bundle 2018-04-20 08:43:44 -07:00
.ruby-version Update ruby dev version 2022-02-07 18:06:28 -08:00
CHANGELOG.md Bump version and add CHANGELOG 2022-02-07 18:09:07 -08:00
Gemfile Use newer version of nokogiri in development for arm64 systems 2022-02-07 18:07:48 -08:00
Gemfile.lock Use newer version of nokogiri in development for arm64 systems 2022-02-07 18:07:48 -08:00
LICENSE Add MIT License 2016-10-05 00:10:31 -07:00
README.md Add Arjeno to contributors list 2023-03-02 07:37:53 -08:00
Rakefile We don't use test and rdoc 2015-06-04 20:36:20 -07:00
VERSION Bump version to 0.12.0 2023-03-02 07:35:41 -08:00
rails-reverse-proxy.gemspec Regenerate gemspec for version 0.12.0 2023-03-02 07:35:45 -08:00

README.md

rails-reverse-proxy

A reverse proxy for Ruby on Rails.

A reverse proxy accepts a request from a client, forwards it to a server that can fulfill it, and returns the server's response to the client

Installation

You know the drill. In your Gemfile

gem 'rails-reverse-proxy'

Then (you guessed it!)

$ bundle install

Usage

A use case for this gem is serving WordPress on a path within your Rails application, such as /blog.

To do this, your controller might look like this

class WordpressController < ApplicationController
  include ReverseProxy::Controller

  def index
    # Assuming the WordPress server is being hosted on port 8080
    reverse_proxy "http://localhost:8080" do |config|
      # We got a 404!
      config.on_missing do |code, response|
        redirect_to root_url and return
      end

      # There's also other callbacks:
      # - on_set_cookies
      # - on_connect
      # - on_response
      # - on_set_cookies
      # - on_success
      # - on_redirect
      # - on_missing
      # - on_error
      # - on_complete
    end
  end
end

Then in your routes.rb file, you should have something like

match 'blog/*path' => 'wordpress#index', via: [:get, :post, :put, :patch, :delete]

You can also pass options into reverse_proxy

reverse_proxy "http://localhost:8000", path: "custom-path", headers: { 'X-Foo' => "Bar" }

If you'd like to bypass SSL verification

reverse_proxy "http://localhost:8000", verify_ssl: false

If you'd like to customize options passed into the underlying Net:HTTP object

reverse_proxy "http://localhost:8000", http: { read_timeout: 20, open_timeout: 100 }

If you'd like to reset the Accept-Encoding header in order to disable compression or other server-side encodings

reverse_proxy "http://localhost:8000", reset_accept_encoding: true

Determine what version you're using

ReverseProxy.version

Feel free to open an issue!

Contributing

All pull requests will become first class citizens.

Contributors

Special thanks to our contributors!