mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
28 lines
735 B
ApacheConf
28 lines
735 B
ApacheConf
DirectoryIndex index.html
|
|
FileETag All
|
|
|
|
# Compress all static assets
|
|
<IfModule mod_deflate.c>
|
|
# compress content with type html, text, and css
|
|
AddOutputFilterByType DEFLATE text/css text/html text/javascript application/javascript application/x-javascript text/js text/plain text/xml
|
|
|
|
<IfModule mod_headers.c>
|
|
# properly handle requests coming from behind proxies
|
|
Header append Vary User-Agent
|
|
</IfModule>
|
|
</IfModule>
|
|
|
|
# Cache, aggressively
|
|
<IfModule mod_expires.c>
|
|
ExpiresActive On
|
|
ExpiresDefault "access plus 10 days"
|
|
|
|
<FilesMatch "\.(eot|ttf|otf)$">
|
|
ExpiresDefault "access plus 10 years"
|
|
</filesMatch>
|
|
</IfModule>
|
|
|
|
# Mime-types
|
|
AddType application/vnd.ms-fontobject .eot
|
|
AddType font/ttf .ttf
|
|
AddType font/otf .otf |