pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
at main 49 lines 944 B view raw
1{ 2 "rewrites": [ 3 { 4 "source": "/(.*)", 5 "destination": "/" 6 } 7 ], 8 "headers": [ 9 { 10 "source": "/(.*)", 11 "headers": [ 12 { 13 "key": "X-Content-Type-Options", 14 "value": "nosniff" 15 }, 16 { 17 "key": "X-Frame-Options", 18 "value": "DENY" 19 }, 20 { 21 "key": "X-XSS-Protection", 22 "value": "1; mode=block" 23 }, 24 { 25 "key": "Cache-Control", 26 "value": "public, max-age=0, s-maxage=0, must-revalidate" 27 } 28 ] 29 }, 30 { 31 "source": "/manifest.webmanifest", 32 "headers": [ 33 { 34 "key": "Content-Type", 35 "value": "application/manifest+json" 36 } 37 ] 38 }, 39 { 40 "source": "/assets/(.*)", 41 "headers": [ 42 { 43 "key": "Cache-Control", 44 "value": "public, max-age=31536000, s-maxage=31536000, immutable" 45 } 46 ] 47 } 48 ] 49}