Sha256: 85e3f76f2b4bd6835f70829eecf3e41705b486f7f4c5b90d8cfce13c5f0dc207

Contents?: true

Size: 421 Bytes

Versions: 58

Compression:

Stored size: 421 Bytes

Contents

require 'sinatra'
require File.join(File.dirname(__FILE__), 'webrick_patch')

class App < Sinatra::Base
  set :environment, :production
  enable :dump_errors

  get('*') do
    headers(
      "Sent-Request-Uri" => request.env['REQUEST_URI'].to_s,
      "Sent-Host" => request.env['HTTP_HOST'].to_s,
      "Sent-Proxy-Connection" => request.env['HTTP_PROXY_CONNECTION'].to_s
    )
    'proxied content'
  end
end

run App

Version data entries

58 entries across 56 versions & 4 rubygems

Version Path
excon-0.41.0 tests/rackups/proxy.ru
excon-0.40.0 tests/rackups/proxy.ru
excon-0.39.6 tests/rackups/proxy.ru
excon-0.39.5 tests/rackups/proxy.ru
excon-0.39.4 tests/rackups/proxy.ru
excon-0.39.3 tests/rackups/proxy.ru
excon-0.39.2 tests/rackups/proxy.ru
excon-0.39.1 tests/rackups/proxy.ru
excon-0.39.0 tests/rackups/proxy.ru
excon-0.38.0 tests/rackups/proxy.ru
excon-0.37.0 tests/rackups/proxy.ru
excon-0.36.0 tests/rackups/proxy.ru
excon-0.35.0 tests/rackups/proxy.ru
excon-0.34.0 tests/rackups/proxy.ru
excon-0.33.0 tests/rackups/proxy.ru
excon-0.32.1 tests/rackups/proxy.ru
excon-0.32.0 tests/rackups/proxy.ru
excon-0.31.0 tests/rackups/proxy.ru