Skip to content
Snippets Groups Projects
Select Git revision
  • 86983187c5b6ea86b6a41fcdb34ba5ce9b55d037
  • 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>