dan
dan

Reputation: 45622

Is there another Ruby library for making a simple HTTP Proxy besides WEBrick?

WEBrick as the HTTPProxyServer class that makes it easy to set up a simple HTTP proxy server. But I've been running into some issues with this library. Are there any other Ruby alternatives that are equally easy to set up?

Upvotes: 4

Views: 1207

Answers (1)

Brian
Brian

Reputation: 6840

You can try EM-Proxy. I haven't worked with it, but from the docs it certainly looks like a simple solution. In fact, there is an example script in the repo.

Upvotes: 3

Related Questions