config.py 949 B

123456789101112131415161718192021222324252627
  1. # Listen port for the HTTP proxy
  2. LISTEN_PORT = 8888
  3. # Date to get pages from Wayback (YYYY, YYYYMM or YYYYMMDD)
  4. DATE = '1998'
  5. # Allow the client to load pages and assets up to X days after DATE.
  6. # Set to None to disable this restriction.
  7. DATE_TOLERANCE = 365
  8. # Send Geocities requests to oocities.org
  9. GEOCITIES_FIX = True
  10. # Use the Wayback-tampered URL as a shortcut when loading images.
  11. # May result in faster loads, but all images will point to
  12. # http://web.archive.org/... as a result. Set this value to 2 to enable an
  13. # experimental mode using username:passwords on top of the original URLs
  14. # instead (not supported by Internet Explorer and some other browsers).
  15. QUICK_IMAGES = True
  16. # Allow the Content-Type header to contain an encoding. Some old browsers
  17. # (Mosaic?) don't understand that and fail to load anything - set this to
  18. # False if you're using one of them.
  19. CONTENT_TYPE_ENCODING = True
  20. # Don't print log entries
  21. SILENT = False