Variable HTTPFileServerSettings.encodingFileExtension
Maps from encoding scheme (e.g. "gzip") to file extension.
If a request accepts a supported encoding scheme, then the file server will look for a file with the extension as a suffix and, if that exists, sends it as the encoded representation instead of sending the original file.
Declaration
class HTTPFileServerSettings
{
// ...
string[string] encodingFileExtension;
// ...
}
Example
settings .encodingFileExtension["gzip"] = ".gz";
Authors
Sönke Ludwig
Copyright
© 2012-2015 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.