For reference: I found two HTTP servers on CPAN that support TLS:
Mojolicious and AnyEvent::HTTP and there is also Net::SSLeay (plus a
promising TODO in Net::Proxy) - but nothing that could be treated as a
full solution.
Is there any other way to test serving https in development?
--
Zbigniew Lukasiak
http://brudnopis.blogspot.com/
http://perlalchemy.blogspot.com/
There have been patches to implement SSL on Twiggy and Corona but iirc they haven't been merged. You can look around on github to find these diffs I believe.
Sent from my Galaxy S
In a mod_perl2 init_phase handler, it's possible to force SSL renegotiation to require client certificates, like so:
$r->add_config([
'SSLVerifyClient optional',
'SSLVerifyDepth 3',
]);