Pod::Webserver
[email protected] ("Michael Goldshteyn")
| Newsgroups | perl.cpan.discuss |
|---|---|
| Message-ID | <[email protected]> |
This is a very nice module, but I was not too happy with the web server
processing remote requests for my module list. A simple change to line 297
did the trick to only process local requests:
if( $conn->peerhost eq '127.0.0.1' and my $req = $conn->get_request ) {
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Mike