Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

HTTP::Daemon with SSL

by bwana147 (Pilgrim)
on Mar 18, 2003 at 15:40 UTC ( #244030=snippet: print w/replies, xml ) Need Help??
Description:

I've been looking for some way of making HTTP::Daemon work over SSL. I could find this thread very useful, but most of the given solutions implied patching Daemon.pm, stopping it from serving as a regular http daemon.

The trick here is simply to dynamically change the inheritance of HTTP::Daemon to make it an heir of IO::Socket::SSL instead of IO::Socket::INET

use HTTP::Daemon;
use IO::Socket::SSL;

@HTTP::Daemon::ISA = qw/ IO::Socket::SSL /;
@HTTP::Daemon::ClientConn::ISA = qw/ IO::Socket::SSL /;

my $server = new HTTP::Daemon
    SSL_cert_file => 'cert.pem',
    SSL_key_file => 'key.pm',
    LocalPort => 443,
    ReuseAddr => 1,
;

while ( my $client = $server->accept() ) {
    ...
    $client->close(SSL_no_shutdown => 1);
}

$server->close(SSL_no_shutdown => 1);
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: snippet [id://244030]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2023-06-06 07:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    How often do you go to conferences?






    Results (26 votes). Check out past polls.

    Notices?