14
edits
(name required modules) |
|||
| Line 15: | Line 15: | ||
== How do I set up a web server to send LZMA2 compressed content? == | == How do I set up a web server to send LZMA2 compressed content? == | ||
No web server patches are necessary to try this: Apache's [http://httpd.apache.org/docs/2.4/content-negotiation.html content negotiation] features may be used to serve static content that is compressed using LZMA2. | No web server patches are necessary to try this: Apache 2.x's [http://httpd.apache.org/docs/2.4/content-negotiation.html content negotiation] features may be used to serve static content that is compressed using LZMA2. | ||
# Ensure the following modules are loaded: | |||
LoadModule mime_module /path/to/apache2/modules/mod_mime.so | |||
LoadModule negotiation_module /path/to/apache2/modules/mod_negotiation.so | |||
AddEncoding gzip .gz | AddEncoding gzip .gz | ||
edits