blob: 1d4696eee0e2f24a481d70b16fb15ace6bfbec6a [file] [log] [blame]
#!/usr/bin/env python3
import os
import sys
from datetime import datetime, timedelta
modified_since = os.environ.get('HTTP_IF_MODIFIED_SINCE', '')
if modified_since:
sys.stdout.write(
'status:304\r\n'
'Content-Type: text/plain\r\n\r\n'
)
sys.exit(0)
one_year = 12 * 31 * 24 * 60 * 60
last_modified = '{} +0000'.format((datetime.utcnow() - timedelta(seconds=one_year)).strftime('%a, %d %b %Y %H:%M:%S'))
expires = '{} +0000'.format((datetime.utcnow() + timedelta(seconds=one_year)).strftime('%a, %d %b %Y %H:%M:%S'))
sys.stdout.write(
f'Cache-Control: public, max-age={one_year}\r\n'
f'Expires: {expires}\r\n'
'Content-Type: text/css\r\n'
'Etag: 123456789\r\n'
f'Last-Modified: {last_modified}\r\n\r\n'
'#test { background-color: rgb(0, 255, 0); }'
)