Giter Site home page Giter Site logo

proxy-ruby's Introduction

proxy-ruby

A very simple rack-proxy in ruby.

The intended of this project is to simplify the implementation of a proxy in Ruby. In order to implement a capable piece of software, it is used the unicorn web server that allows concurrent access.

All the produced code is present in config.ru file. The unicorn.rb file contains the code that allow run the unicorn web server. Notice that the used gem to install the web server is: 'unicorn-rails' and not 'unicorn', because the last have a set of recognized errors.

class AppProxy < Rack::Proxy

  def rewrite_env(env)
    request = Rack::Request.new(env)
    @doc = Nokogiri::XML(request.body.read)
    @doc.remove_namespaces!
    puts @doc

    #Do Something ...
    
    if request.path=='/path1'
      env["HTTP_HOST"] = IP_PORT_DESTINATION_1
    else
      env["HTTP_HOST"] = IP_PORT_DESTINATION_2
    end

    env['rack.input'].rewind
    env
  end
end

post '/*' do
  AppProxy.new.call(request.env)
end

run AppProxy.new

To execute the project use the command as follows:

bundle exec unicorn_rails -p 8090 -c ./unicorn.rb

Have a nice day!

proxy-ruby's People

Contributors

sirpedrotavares avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.