'UnknownFileTypes': {
'ReuseServlets': 1,
# Technique choices:
# serveContent, redirectSansAdapter
'Technique': 'serveContent',
# If serving content:
'CacheContent': 1,
'CheckDate': 1,
},
So by default, a particular file with an unknown type (*.html, *.gif, etc.):
The previous version of all this never cached the contents of the file.
Note that 'CheckDate'=0 is currently circumvented, because the application always checks the date of the server side file and makes a new servlet if it's newer. I think that behavior is ultimately "wrong" and needs further investigation.
RedirectSansAdapter is not likely to be a popular option, but I still provided it. Docs can be found in UnknownFileTypeServlet.py:UnknownFileTypeServlet.redirectSansAdapter().