blob: 93be5f0b1c3c2d227fad7b915ad4e225344647c8 [file] [log] [blame]
<?php
header("Access-Control-Allow-Origin: http://127.0.0.1:8000");
header("Access-Control-Allow-Credentials: true");
$name = 'green-background.css';
$fp = fopen($name, 'rb');
header("Content-Type: text/css");
header("Content-Length: " . filesize($name));
fpassthru($fp);
exit;
?>