We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 996b919 commit e21a2d6Copy full SHA for e21a2d6
1 file changed
static/.htaccess
@@ -1,3 +1,12 @@
1
+# ─── Block Source Maps ────────────────────────────────────────────────────────
2
+
3
+<FilesMatch "\.map$">
4
+ <IfModule mod_headers.c>
5
+ Header always set X-Robots-Tag "noindex, nofollow"
6
+ </IfModule>
7
+ Require all denied
8
+</FilesMatch>
9
10
# ─── Security Headers ──────────────────────────────────────────────────────────
11
12
<IfModule mod_headers.c>
@@ -8,8 +17,8 @@
17
# Verhindert MIME-Sniffing
18
Header always set X-Content-Type-Options "nosniff"
19
- # Schutz gegen Clickjacking
- Header always set X-Frame-Options "SAMEORIGIN"
20
+ # Schutz gegen Clickjacking (DENY da frame-ancestors 'none' im CSP)
21
+ Header always set X-Frame-Options "DENY"
13
22
14
23
# Referrer nur über HTTPS weitergeben
15
24
Header always set Referrer-Policy "strict-origin-when-cross-origin"
0 commit comments