summaryrefslogtreecommitdiff
path: root/.docker/lighttpd.conf
blob: 132ad29f61799e09f7521f4e8a19168347cfaa84 (plain)
1
2
3
4
5
6
7
8
9
10
server.modules += ( "mod_setenv" )

setenv.add-response-header = (
	"Content-Security-Policy" => "default-src 'self'; img-src https:; object-src 'self'; script-src 'self'; style-src 'self'",
	"Referrer-Policy" => "no-referrer",
	"X-Content-Type-Options" => "nosniff",
	"X-Frame-Options" => "SAMEORIGIN",
	"X-Permitted-Cross-Domain-Policies" => "none",
	"X-XSS-Protection" => "1; mode=block",
)