<IfModule mod_headers.c>
  <FilesMatch "\.(html|js|wasm|pck|txt|cfg)$">
    Header set Cache-Control "no-cache, no-store, must-revalidate"
    Header set Pragma "no-cache"
    Header set Expires 0
  </FilesMatch>
</IfModule>

<IfModule mod_headers.c>
  <FilesMatch "\.(txt|cfg|glb|zip)$">
    Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
</IfModule>

<IfModule mod_deflate.c>
  <FilesMatch "\.(txt|cfg|glb|zip)$">
    SetOutputFilter none
  </FilesMatch>
</IfModule>
