#! /usr/bin/perl -w
use strict;

print <<EOF;
Cache-Control: no-cache
Pragma: no_cache
Expires: Thu, 1  Jan 1970 03:00:00 GMT
Content-Type: text/css

EOF
if( open(FIL,"/var/www/fallman.org/daniel.fallman.org/css/css.css") ) {
	while( <FIL> ) { print; };
	close(FIL);
} else {
	print "No css for you!\n";
};
exit;
