951ca0afdf
Change origin-when-cross-origin to strict-origin-when-cross-origin. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
32 lines
2 KiB
Text
32 lines
2 KiB
Text
AddDefaultCharset UTF-8
|
|
|
|
<IfModule mod_autoindex.c>
|
|
Options -Indexes
|
|
</IfModule>
|
|
|
|
<ifModule mod_headers.c>
|
|
# Set security headers if missing.
|
|
# (This Content-Security-Policy makes almost no sense (there are many inline scripts and styles on the forum, frames from media sites are allowed).)
|
|
#
|
|
### Only works in Apache 2.4.10+ (Reason, condition -> "expr = -z% {resp: ...}") ###
|
|
#
|
|
Header always set Content-Security-Policy "object-src 'none';frame-ancestors 'none';base-uri 'none';form-action 'self'" "expr=-z %{resp:Content-Security-Policy}"
|
|
Header always set Feature-Policy "accelerometer 'none';ambient-light-sensor 'none';autoplay 'none';battery 'none';camera 'none';document-domain 'self';fullscreen 'self';geolocation 'none';gyroscope 'none';magnetometer 'none';microphone 'none';midi 'none';payment 'none';picture-in-picture 'none';sync-xhr 'self';usb 'none'" "expr=-z %{resp:Feature-Policy}"
|
|
Header always set Referrer-Policy "strict-origin-when-cross-origin" "expr=-z %{resp:Referrer-Policy}"
|
|
# for https only mode
|
|
# Header set Strict-Transport-Security "max-age=31536000" "expr=-z %{resp:Strict-Transport-Security}"
|
|
Header always set X-Content-Type-Options "nosniff" "expr=-z %{resp:X-Content-Type-Options}"
|
|
Header always set X-Frame-Options "DENY" "expr=-z %{resp:X-Frame-Options}"
|
|
Header always set X-XSS-Protection "1; mode=block" "expr=-z %{resp:X-XSS-Protection}"
|
|
Header always set Permissions-Policy "accelerometer=(),ambient-light-sensor=(),autoplay=(),battery=(),camera=(),document-domain=(self),fullscreen=(self),geolocation=(),gyroscope=(),magnetometer=(),microphone=(),midi=(),payment=(),picture-in-picture=(),sync-xhr=(self),usb=()" "expr=-z %{resp:Permissions-Policy}"
|
|
|
|
# Remove headers containing php information
|
|
Header unset X-Powered-By
|
|
Header always unset X-Powered-By
|
|
</ifModule>
|
|
|
|
# Hiding information about the system
|
|
ServerSignature Off
|
|
#ServerTokens ProductOnly # Use only in server config, do not use in .htaccess
|
|
|
|
# More info: https://github.com/h5bp/server-configs-apache/blob/master/dist/.htaccess
|