Made a minimal change to the Compress::ZLib evaluated require,
since it appeared didn't work as expected on ActivePerl Build 630+.
before : my $has_zlib = eval { require "Compress::Zlib" }; after : my $has_zlib = eval { require Compress::Zlib };
Hope that it'll still execute on older builds...
All incoming request headers are now transferred as-is,
except for Host and the rpcproxy related X-... ones.
This is now also reflected in the request-log (debuglevel 2)
The access-log now logs REMOTE_ADDR instead of HTTP_HOST.