-
Notifications
You must be signed in to change notification settings - Fork 992
Expand file tree
/
Copy pathcustomHttp.yml
More file actions
35 lines (35 loc) · 929 Bytes
/
Copy pathcustomHttp.yml
File metadata and controls
35 lines (35 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
customHeaders:
- pattern: '**/*'
headers:
- key: Strict-Transport-Security
value: max-age=31536000; includeSubDomains
- key: X-Content-Type-Options
value: nosniff
- key: X-Frame-Options
value: SAMEORIGIN
- key: Referrer-Policy
value: strict-origin-when-cross-origin
- pattern: /
headers:
- key: Cache-Control
value: no-cache, no-store, must-revalidate
- key: Pragma
value: no-cache
- key: Expires
value: '0'
- pattern: '**/index.html'
headers:
- key: Cache-Control
value: no-cache, no-store, must-revalidate
- key: Pragma
value: no-cache
- key: Expires
value: '0'
- pattern: '**/assets/env.js'
headers:
- key: Cache-Control
value: no-cache, no-store, must-revalidate
- key: Pragma
value: no-cache
- key: Expires
value: '0'