Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • 0bee37e9410bdeb8b77467f7ff351934842bf5d0
  • master default protected
  • updates
  • hierarchical-keywords
  • map
  • topoi
  • layer
  • tsne-layout
8 results

.htaccess

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .htaccess 380 B
    <IfModule mod_headers.c>
        # WEEK
        <FilesMatch "\.(jpg|jpeg|png|gif|swf|csv)$">
            Header set Cache-Control "max-age=315360000, public"
        </FilesMatch>
    
    </IfModule>
    
    # Deflate Compression by MimeType
    <IfModule mod_deflate.c>
     <FilesMatch "\.(js|csv|css)$">
      ExpiresActive on
      ExpiresDefault "access plus 1 month"
      SetOutputFilter DEFLATE
     </FilesMatch>
    </IfModule>