4 print "Content-Type: text/plain\n";
5 print "Access-Control-Allow-Origin: *\n";
6 print "Access-Control-Allow-Credentials: true\n";
7 print "Access-Control-Allow-Headers: SET-COOKIE\n";
8 print "Cache-Control: no-store\n";
9 print 'Cache-Control: no-cache="set-cookie"' . "\n";
11 # We only map the SET_COOKIE request header to "Set-Cookie"
12 print "Set-Cookie: " . $ENV{"HTTP_SET_COOKIE"} . "\n\n";