blob: f437a279f39c1158207623f198158aeae80c6a9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Options -Indexes
<IfModule mod_headers.c>
Header always set X-Content-Type-Options "nosniff"
Header always set Referrer-Policy "strict-origin-when-cross-origin"
Header always set X-Frame-Options "DENY"
</IfModule>
<FilesMatch "\.(?:css|js|png|ico|svg|sha256)$">
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 7 days"
</IfModule>
</FilesMatch>
<FilesMatch "\.tar\.gz$">
ForceType application/gzip
</FilesMatch>
<FilesMatch "\.zip$">
ForceType application/zip
</FilesMatch>
|