Subject: | "secure" in Server/mod_perl2.pm |
Using apache2 on Debian squeeze (2.2.16-6+squeeze1),
$r->subprocess_env('HTTPS')
returns on
but the code in OAuth::Lite::Server::mod_perl2::new is
if ( ($INC{'Apache2/ModSSL.pm'} && $r->connection->is_https)
|| ($r->subprocess_env('HTTPS') && $r->subprocess_env('HTTPS') eq
'ON') ) {
$self->{secure} = 1;
}
which checks for ON.