зеркало из https://github.com/mozilla/kitsune.git
38 строки
1.2 KiB
ApacheConf
38 строки
1.2 KiB
ApacheConf
# Neither Firefox nor Safari will draw these if they're text/xml
|
|
AddType image/svg+xml .svg
|
|
AddType application/octet-stream .exe
|
|
AddType application/font-woff .woff
|
|
AddType application/font-woff2 .woff2
|
|
AddType application/vnd.ms-fontobject .eot
|
|
AddType application/octet-stream .ttf
|
|
|
|
AddCharset utf-8 .css .js
|
|
|
|
# Set far-future Expires headers for static media
|
|
ExpiresActive on
|
|
|
|
ExpiresDefault "access plus 1 week"
|
|
ExpiresByType text/css "access plus 1 year"
|
|
ExpiresByType text/javascript "access plus 1 year"
|
|
ExpiresByType image/png "access plus 1 month"
|
|
ExpiresByType image/jpeg "access plus 1 month"
|
|
ExpiresByType image/gif "access plus 1 month"
|
|
ExpiresByType image/svg+xml "access plus 1 month"
|
|
ExpiresByType image/vnd.microsoft.icon "access plus 1 month"
|
|
ExpiresByType video/webm "access plus 1 week"
|
|
ExpiresByType video/ogg "access plus 1 week"
|
|
ExpiresByType video/x-flv "access plus 1 week"
|
|
ExpiresByType application/x-shockwave-flash "access plus 1 week"
|
|
ExpiresByType text/plain "access plus 0 seconds"
|
|
ExpiresByType application/octet-stream "access plus 0 seconds"
|
|
|
|
FileETag MTime
|
|
|
|
<FilesMatch "\.txt$">
|
|
FileETag None
|
|
</FilesMatch>
|
|
|
|
<FilesMatch ".(jpeg|png|jpg|gif)$">
|
|
Header set Access-Control-Allow-Origin "*"
|
|
</FilesMatch>
|