Vars.pm 452 B

123456789101112131415161718192021
  1. package Trog::Vars;
  2. use strict;
  3. use warnings;
  4. #1MB chunks
  5. our $CHUNK_SEP = 'tCMSep666YOLO42069';
  6. our $CHUNK_SIZE = 1024000;
  7. our %content_types = (
  8. plain => "text/plain;",
  9. html => "text/html; charset=UTF-8",
  10. json => "application/json;",
  11. blob => "application/octet-stream;",
  12. );
  13. our %cache_control = (
  14. revalidate => "no-cache, max-age=0",
  15. nocache => "no-store",
  16. static => "public, max-age=604800, immutable",
  17. );