Skip to content

Commit

Permalink
Merge pull request #46 from pex/beautify-readme
Browse files Browse the repository at this point in the history
Beautify README for github
  • Loading branch information
ncr committed Sep 15, 2014
2 parents 359e204 + ab389a8 commit 8a8b0f1
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 45 deletions.
55 changes: 55 additions & 0 deletions README.md
@@ -0,0 +1,55 @@
A request/response rewriting HTTP proxy. A Rack app.
Subclass `Rack::Proxy` and provide your `rewrite_env` and `rewrite_response` methods.


## Example

```ruby
class Foo < Rack::Proxy

def rewrite_env(env)
env["HTTP_HOST"] = "example.com"

env
end

def rewrite_response(triplet)
status, headers, body = triplet

headers["X-Foo"] = "Bar"

triplet
end

end
```

### Disable SSL session verification when proxying a server with e.g. self-signed SSL certs

```ruby
class TrustingProxy < Rack::Proxy

def rewrite_env(env)
env["rack.ssl_verify_none"] = true

env
end

end
```

The same can be achieved for *all* requests going through the `Rack::Proxy` instance by using

```ruby
Rack::Proxy.new(ssl_verify_none: true)
```

See tests for more examples.

## WARNING

Doesn't work with fakeweb/webmock. Both libraries monkey-patch net/http code.

## Todos

* Make the docs up to date with the current use case for this code: everything except streaming which involved a rather ugly monkey patch and only worked in 1.8, but does not work now.
45 changes: 0 additions & 45 deletions Readme

This file was deleted.

0 comments on commit 8a8b0f1

Please sign in to comment.