- or download this
<Location />
AuthName "Intranet"
...
PerlSetVar HTTPS "ON"
SSLOptions +StdEnvVars
</Location>
- or download this
if ($r->dir_config('HTTPS') eq "ON") {
return DECLINED;
} else {
return OK;
}
- or download this
if (($d->{nav_url_secure_flag} == 1) && ($r->dir_config('HTTPS
+') ne "ON")) {
$r->header_out( Location => "https://portal/$url" );
return REDIRECT;
}