config.py 595 B

123456789101112131415161718
  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. # Send Geocities requests to oocities.org
  6. GEOCITIES_FIX = True
  7. # Use the Wayback-tampered URL as a shortcut when loading images.
  8. # May result in faster loads, but all images will point to
  9. # http://web.archive.org/... as a result.
  10. QUICK_IMAGES = True
  11. # Allow the Content-Type header to contain an encoding. Some old browsers
  12. # (Mosaic?) don't understand that and fail to load anything - set this to
  13. # False if you're using one of them.
  14. CONTENT_TYPE_ENCODING = True