23 lines
No EOL
919 B
ApacheConf
23 lines
No EOL
919 B
ApacheConf
ErrorDocument 404 /404.html
|
|
SetEnv TZ Europe/Amsterdam
|
|
Header set Strict-Transport-Security "max-age=31536000" env=HTTPS
|
|
Options All -Indexes
|
|
|
|
<IfModule mod_expires.c>
|
|
# Turn on the module.
|
|
ExpiresActive on
|
|
# Set the default expiry times.
|
|
ExpiresDefault "access plus 2 days"
|
|
ExpiresByType image/jpg "access plus 1 month"
|
|
ExpiresByType image/svg+xml "access 1 month"
|
|
ExpiresByType image/gif "access plus 1 month"
|
|
ExpiresByType image/jpeg "access plus 1 month"
|
|
ExpiresByType image/png "access plus 1 month"
|
|
ExpiresByType text/css "access plus 1 month"
|
|
ExpiresByType text/javascript "access plus 1 month"
|
|
ExpiresByType application/javascript "access plus 1 month"
|
|
ExpiresByType application/x-shockwave-flash "access plus 1 month"
|
|
ExpiresByType image/ico "access plus 1 month"
|
|
ExpiresByType image/x-icon "access plus 1 month"
|
|
ExpiresByType text/html "access plus 600 seconds"
|
|
</IfModule> |