########################################################
# try to cache, compress and set header of js files
# in this directory, if supported by the server
########################################################
# cache (1 year should do one would think)
ExpiresActive On # enable expirations
ExpiresByType text/javascript "access plus 1 year"
ExpiresByType application/x-javascript "access plus 1 year"
ExpiresByType application/javascript "access plus 1 year"
# compress
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
# set header
Header append Vary: Accept-Encoding