I am writing some modules to do authentication
in a reverse proxy scenario.
In a userid-password authentication mechanism I can
invalid an authentication session using
$r->note_basic_auth_failure();return
Apache::AUTH_REQUIRED;
In this way I can invalid the authentication
session an
I read in some previous message that
Apache::Cookie->bake is buggy so
used $r->headers_out->add('Set-Cookie'=>$cookie);to
send a cookie to a browser but..no way the browser do not receive any cookie
!!!
did I miss something ? Below I enclose my code
fragment.
Any help is apreciated
Tha