-
Notifications
You must be signed in to change notification settings - Fork 0
/
customHttp.yml
33 lines (33 loc) · 1.16 KB
/
customHttp.yml
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
customHeaders:
- pattern: '/'
headers:
- key: 'Strict-Transport-Security'
value: 'max-age=31536000; includeSubDomains'
- key: 'X-Frame-Options'
value: 'SAMEORIGIN'
- key: 'Cache-Control'
value: 'public, max-age=0, s-maxage=300, must-revalidate'
- pattern: '/imgs/**/*'
headers:
- key: 'Strict-Transport-Security'
value: 'max-age=31536000; includeSubDomains'
- key: 'X-Frame-Options'
value: 'SAMEORIGIN'
- key: 'Cache-Control'
value: 'public, max-age=30, s-maxage=300, stale-while-revalidate'
- pattern: '/_next/static/**/*'
headers:
- key: 'Strict-Transport-Security'
value: 'max-age=31536000; includeSubDomains'
- key: 'X-Frame-Options'
value: 'SAMEORIGIN'
- key: 'Cache-Control'
value: 'public, max-age=31536000, s-maxage=31536000, immutable'
- pattern: '/favicon.svg'
headers:
- key: 'Strict-Transport-Security'
value: 'max-age=31536000; includeSubDomains'
- key: 'X-Frame-Options'
value: 'SAMEORIGIN'
- key: 'Cache-Control'
value: 'public, max-age=300, s-maxage=86400, stale-while-revalidate'