14
edits
(name required modules) |
m (formatting) |
||
| Line 20: | Line 20: | ||
LoadModule mime_module /path/to/apache2/modules/mod_mime.so | LoadModule mime_module /path/to/apache2/modules/mod_mime.so | ||
LoadModule negotiation_module /path/to/apache2/modules/mod_negotiation.so | LoadModule negotiation_module /path/to/apache2/modules/mod_negotiation.so | ||
AddEncoding gzip .gz | AddEncoding gzip .gz | ||
AddEncoding xz .xz | AddEncoding xz .xz | ||
| Line 26: | Line 26: | ||
# AddType application/x-gzip .gz # comment this out! | # AddType application/x-gzip .gz # comment this out! | ||
RemoveType .gz # use this if in doubt | RemoveType .gz # use this if in doubt | ||
<Directory /var/www/somewhere/> | <Directory /var/www/somewhere/> | ||
Options +MultiViews | Options +MultiViews | ||
edits