From: dusty Date: 2008-02-07T05:45:00+09:00 Subject: Re: simple ruby proxy server? I had a feeling it was more than just capturing the headers. Do you happen to be running apache on the webserver? You can log all of it and not worry about a proxy. Here are two ways. 1. mod_dumpio # Put this in your apache config DumpIOInput On LogLevel debug 2. mod_log_forensic # Put this in your apache config ForensicLog /some/path/to/a/logfile.log This would simply capture the traffic on the web server itself.